*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
}
body{
    min-height: 100vh;
    color: #172033;
    font-family: Arial, sans-serif;
    background: #f5f8fc;
}
.header{
    padding: 1rem 6%;
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.logo2{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.logo2:active{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}
.logo:active{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}
.main{
    width: min(92%, 760px);
    margin: 2.5rem auto 4rem;
}
.input-contener{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.upload-copy{
    margin-bottom: 1.5rem;
}
.eyebrow{
    color: #2d8f52;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
}
h1{
    margin: .45rem 0 .65rem;
    font-size: clamp(1.8rem, 5vw, 2.7rem);
}
.upload-copy p{
    color: #657187;
    line-height: 1.5;
}
.upload-box{
    width: min(100%, 560px);
    min-height: 230px;
    padding: 2.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    cursor: pointer;
    color: #2d8f52;
    background: #fff;
    border: 2px dashed #77c994;
    border-radius: 18px;
    transition: .2s ease;
}
.upload-box:hover{
    background: #f1fbf4;
    border-color: #2d8f52;
    transform: translateY(-2px);
}
.upload-box i{
    margin-bottom: .25rem;
    font-size: 2.3rem;
}
.upload-box strong{
    color: #172033;
    font-size: 1.1rem;
}
.upload-box span{
    color: #657187;
    font-size: .9rem;
}
.upload-box small{
    margin-top: .25rem;
    color: #8a94a6;
}
.input{
    display: none;
}
.output-contener{
    width: min(100%, 560px);
    min-height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.25rem auto;
    border-radius: 18px;
    border: 1px solid #dce4ef;
    background: #fff;
    overflow: hidden;
}
.output{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    color: #8995a8;
    margin-bottom: 15px;
    margin-top: 15px;
}
.output i{
    font-size: 1.6rem;
}
.output img{
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
}
.footer{
    display: flex;
    justify-content: center;
    gap: 1rem;
    color: #657187;
}
.footer i{
    font-size: 1.3rem;
}
.footer i:hover{
    color: #2d8f52;
}
.para{
    margin: .85rem 1rem 1.5rem;
    color: #8995a8;
    font-size: .8rem;
    text-align: center;
}
.download-button{
    text-decoration: none;
    color: #fff;
    padding: .7rem 1.2rem;
    border-radius: 18px;
    background: #2d8f52;
    transition: .2s ease;
}

