.header-link {
    color: white;
    font-weight: bold;
    position: relative;
    transition: all 400ms ease-in-out;
}

.header-link:hover {
    color: #009CDE;
    text-decoration: none;
}

.header-link > .underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #009CDE;
    border-radius: 3px;
    opacity: 0;
    transform: translateY(0);
    transition: all 400ms ease-in-out;
}

.header-link:hover > .underline {
    transform: translateY(-5px);
    opacity: 1;
}

.header-title {
    color: #009CDE;
    font-size: 3.75rem;
    line-height: 3.75rem;
    font-weight: 800;
}

.header-text-1 {
    color: white;
    font-size: 2.5rem;
    line-height: 2.5rem;
    font-weight: 500;
}

.header-text-2 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    color: white;
    font-weight: 500;
}

.download-btn {
    width: 45%;
    max-width: 250px;
    min-width: 130px;
}

.image-container {
    padding: 40px;
    position: relative;
}

#menu-button {
    position: relative;
}

#menu-button.open {
    position: relative;
    padding-bottom: 50px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom: white;
    z-index: 2;
}

#menu-button.open:hover {
    background-color: white;
}

#modal-menu {
    position: fixed;
    z-index: 3;
    left: 0;
    top: 95px;
    height: 100vh;
    width: 100%;
    background-color: white;
    overflow: scroll;
}

#modal-menu .header-link {
    color: #050248;
    text-decoration: none;
}

#modal-menu .button {
    align-self: flex-start;
}

#modal-menu-border {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 90px;
    height: 5px;
    width: 100%;
    background-color: lightblue;
}

header {
    margin-top: 5px;
}

@media only screen and (max-width: 1400px) {
    .header-text {
        padding: 60px 0 0;
    }
}