.banner-section img {
    display: block;
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Cormorant Garamond';
    margin: 0;
    font-style: normal;
    letter-spacing: .035em;
    text-transform: none;
    line-height: 1.7em;
    font-size: 18px;
}

.column-1-section {
    text-align: center;
    margin-top: 45px;
}

.column p {
    line-height: 1.7;
    font-size: 20px;
    padding-bottom: 40px;
}

.column-2 a {
    color: rgb(251, 252, 252 );
    background-color: black;
    border-color: rgb(28, 40, 51 );
    padding: 15px;
    border-radius: 0px;
    font-size: 20px;
    text-decoration: none;
}

.column-2 > a:hover {
    border-color: black;
    border-style: solid;
    border-width: 1px;
    color: black;
    background-color: white;
}

.column-3 {
    text-align: center;
}

.contact-form-section {
    background-color: rgb(248,249,249);
}

.container:hover .overlay {
    opacity: 1;
}

.container {
    position: relative;
    width: 20%;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramond-Light.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

footer {
    text-align: center;
    padding: 30px;
}

footer a {
    color: black;
}

footer address {
    margin-top: 20px;
}

h1 {
    font-size: 54px;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
}

.image {
    display: block;
    width: 100%;
    height: auto;
}

.link-image {
    margin-top: 20px;
    height: 385px;
}

.navbar {
    background: white;
    height: 60px;
    z-index: 1;
    overflow: hidden;
    position: fixed;
    top: 0;
    opacity: 0.9;
    width: 100%;
}

.navbar a {
    display: block;
    padding: 0 10px;
    text-decoration: none;
    line-height: 36px;
    padding: 5px 15px;
    color: rgb(251, 252, 252);
    background-color: black;
}

[data-nav-open="true"] {
    overflow: visible;
    height: auto;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: rgba(240, 244, 245, 0.76);
}

.resume-section {
    background-color: rgb(251, 252, 252);
    font-size: 1.2em;
}

section {
    padding: 60px 40px 40px 40px;
}

.social-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
}

.social-links li {
    padding: 5px;
}

.text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.toggle-icon {
    padding: 20px;
    width: 30px;
}

@media only screen and (min-width: 768px) {
    .navbar {
        height: 70px;
        display: flex;
        align-items: center;
        width: 100%;
        padding-left: 10%;
    }
    .navbar a {
        display: block;
        margin-right: 10px;
        background-color: black;
    }
    section {
        padding: 10vh;
    }
    .toggle-icon {
        display: none;
    }
}

@media only screen and (min-width: 1200px) {
    .navbar > a:hover {
        border-color: black;
        border-style: solid;
        border-width: 1px;
        color: black;
        background-color: white;
        padding: 5px 14px;
    }
    .resume-section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    section {
        padding: 15vh;
    }
}