@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root{

    --brand-green: #18474A;
    --brand-orange: #D2801F;
    --brand-light: #FAF7F6;
    --brand-black: #000;
    --brand-white: rgba(255,255,255,0.9);
    --brand-gray: #222222;
    --brand-gray5e: #5E5E5E;
}

body{
    font-family: "Montserrat", sans-serif;
    color: var(--brand-white);
    background: var(--brand-black);
}
.page-wrapper .container{
    max-width: 400px;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    line-height: 20px;
    white-space: normal;
    word-wrap: break-word;
}
p{
    margin-top: 0;
    margin-bottom: 16px;
}
a{
    text-decoration: none;
    color: initial;
}
a:hover,
a:active,
a:focus,
a:focus-within,
a:focus-visible{
    text-decoration: none;
    color: inherit;
}
.text-center{
    text-align: center;
}
.heading-1{
    margin-bottom: 40px;
}
.d-none{
    display: none;
}
.fw-600{
    font-weight: 600;
}
.fw-700{
    font-weight: 700;
}
.font-20{
    font-size: 20px;
    line-height: 27px;
}
.font-30{
    font-size: 30px;
    line-height: 37px;
}
.bg-brand-gray{
    background: var(--brand-gray);
    padding: 16px;
    border-radius: 20px;
    margin-bottom: 48px;
}
.btn-link,
.btn-link:hover,
.btn-link:active,
.btn-link:focus,
.btn-link:focus-within,
.btn-link:focus-visible{
    font-weight: 400;
    color: #00E3FF;
}

.btn-gray,
.btn-gray:hover,
.btn-gray:active,
.btn-gray:focus,
.btn-gray:focus-within,
.btn-gray:focus-visible{
    background: #C6C6C6;
    color: #010101 !important;
    border-radius: 100px;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    padding: 16px 24px;
    display: block;
    margin: 28px 0 8px 0;
}
.btn-brand,
.btn-brand:hover,
.btn-brand:active,
.btn-brand:focus,
.btn-brand:focus-within,
.btn-brand:focus-visible{
    background: linear-gradient(87.16deg, #FE010C 4.48%, #8A02FD 52.63%, #00E3FF 96.93%);
    color: var(--brand-white);
    border-radius: 100px;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    padding: 16px 24px;
    display: block;
    margin: 28px 0 6px 0;
}
.img-section{
    text-align: center;
    width: 400px;
    height: 400px;
    max-height: 400px;
    /* max-width: auto; */
    overflow: hidden;
    background: linear-gradient(25deg, #FE010C 4.48%, #8A02FD 52.63%, #00E3FF 96.93%);   
    margin: 0 auto 32px auto;
    padding: 18px;
    box-sizing: border-box;
}
.img-section #file-img{
    width: 100%;
    height: 100%;
    border-radius: 500px;
/*    border: 1px solid #C6C6C6;*/
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    margin: auto;
}
#frame-div{
    display: none;
}
.result{
    display: none;
}
#copyIcon {
    cursor: pointer;
    margin-left: 5px;
    width: 15px;
    height: 15px;
    transition: transform 0.2s ease; /* Smooth effect when hovering */
    vertical-align: -2px;
}
/* Hover effect for the icon */
.copy-icon:hover {
    transform: scale(1.3); /* Slight zoom effect */
}
/* Pop-up message style */
.copied-popup {
    display: none;
    position: relative;
    background-color: #28a745;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
}
@media only screen and (max-width: 500px) {
    .img-section{
        max-width: calc(100vw - 3rem);
        max-height: calc(100vw - 3rem);
    }
}