.container {
    width: 100%;
    height: 150px;
    position: relative;
}

.main {
    padding-top: 0;
    min-height: 100vh;
}

.hero-section {
    width: 100%;
    height: 850px;
    background: url(../images/headertwo.jpg) lightgray 50% / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: -150px;
}



.hero-section h1 {
    font-family: "Inknut Antiqua", sans-serif;
    font-size: 70px;
    color: #FEFAF2;
    padding-left: 2%;
    margin: 0;
    text-shadow: 2px 2px 4px rgba (0,0,0,0.5);
}

.information {
    margin-left: 5%;
    max-width: 700px;
    min-width: 0;
    padding-top: 1%;
}

h2 {
    text-align: center;
    align-items: center;
    font-family: "Inknut Antiqua", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 20px;
}
.intro {
    display: flex;
    text-align: center;
    font-family: "Inria Serif", sans-serif;
    padding: 60px 20px;
    margin-bottom: 60px;
    margin-top: 70px;
}

.information p {
    text-align: center;
    padding: 40px;
    line-height: 1.6;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.edu {
    width: 900px;
    height: 350px;
    margin-left: 50px;
    flex-shrink: 0;
}

@media (max-width: 760px) {
    .intro {
        flex-direction: column;
        text-align: center;
    }
    
    .information {
        flex-direction: column;
        text-align: center;
    }

    .edu {
        max-width: 330px;
        min-width: 0;
        height: auto;
        align-items: center;
    }

    h2, p {
        padding-top: 10%;
        position: relative;
    }

}