@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    color: white;
    overflow-y: hidden;
}


header {
    background: rgba(0, 0, 80, 0.9);
    backdrop-filter: blur(8px);
    height: 14vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

#logo {
    display: flex;
    align-items: center;
}

#logo img {
    height: 70px;
}


form {
    display: flex;
    align-items: center;
    gap: 15px;
}

select {
    background-color: white;
    color: #0a0a6b;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

select:hover {
    transform: scale(1.05);
}

select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 0, 0.5);
}

button {
    background-color: #ffd900;
    color: #0a0a6b;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 12px 22px;
    cursor: pointer;
}

button:hover {
    background-color: gold;
    transform: scale(1.05);
}


#all {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
    gap: 60px;

    position: fixed;
    top: 14vh;  
    left: 0;
    right: 0;
    bottom: 0;

    z-index: -1;
    transition: opacity 0.6s ease;
}

aside {
    font-weight: bolder;
    flex: 1;
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 600px;
    text-align: justify;
    transition: all 0.5s ease;

}


main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: all 0.5s ease;

}

figure>img {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

#std {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

#std>img {
    max-height: 500px;
    max-width: 420px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

#label {
    font-weight: 600;
    font-size: 1rem;
    opacity: 0.85;
}


@media (max-width: 1024px) {
    #all {
        flex-direction: column;
        text-align: center;
    }

    aside {
        max-width: 100%;
    }
}