

* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    display: flex;
    margin: 0;
    flex-direction: column;
    gap: 40px;
    min-height: 100dvh;
    background: url("student2.jpeg") no-repeat center;
    border-bottom-left-radius: 50% 10%;
    border-bottom-right-radius: 50% 10%;
    background-size: cover;
    
}

/* ======== Header  ============ */

header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    justify-content: center;
    display: flex;
}
.logo {
    max-width: 100%;
    height: auto;
    width: 160px;
}

.bottom-header {
    display: flex;
    align-items: center;
    background: #722f37;
    padding: 20px;
}
.goic {
    flex: 1;
    margin-left: 12px;
    padding: 20px 20px 20px 0;
}
.goic-intro {
    color: aliceblue;
}
button {
    background-color: darkseagreen;
    border-radius: 25px;
    cursor: pointer;
    padding: 12px 25px;
    color: black;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border: none;
    font-weight: 800;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
h1 {
    margin-bottom: 15px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 3rem;
}
.goic > p{
    font-size: 1.2rem;
    margin-bottom: 20px;
}
/* ======== Header ends here ======== */


main {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    
    pad: 40px 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    color: azure;
    border-bottom-left-radius: 50% 10%;
    border-bottom-right-radius: 50% 10%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.legend {
    text-align: center;
    padding: 80px 20px;
    width: 100%;
    
}
main > section {
    flex: 1 1 280px;
    pad: 80px 20px;
}
 h2 {
    color: lightgray;
    font-family:  'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif,Verdana, Geneva, Tahoma, sans-serif;
    text-decoration: underline;
    padding-bottom: 8px;
}
.about-us {
    padding-bottom: 40px;
    margin: 10px;
}
.bonus {
    margin-top: 40px;
    flex: 1;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
li {
    list-style: none;
    line-height: 1.5rem;
    gap: 30px;
}



footer {
    align-items: center;
    justify-content: center;
    background: white;
    
}
.top-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    text-align: center;
    color: black;
    margin-bottom: 20px;
     line-height: 3vh;
}
h3 {
    padding-top: 12px;
    padding-bottom: 15px;
    color: #b22222;
    font-weight: 500;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.copyright {
    
    background: white;
    flex: 1;
    font-size: 10px;
    text-align: center;
    padding-top: 25px;
}
a {
    text-decoration: none;
    color: #000000;
}

@media (max-width: 1024px) {
    .bottom-header{
        flex-direction: column;
    }
}

@media ( max-width: 768px) {
    .bottom-header{
        flex-direction: column;
    }
    .bottom-header h1 {
        font-size: 28px;
    }
    button {
        padding: 10px 18px;
    }
}