html {
    margin: 0px;
    padding: 0px;
    font-family: "Nunito Sans";
}

title {
    display: none;
}
a {
    text-decoration: none;
    color: inherit;
}
body {
    background-color: white;
    width: 100vw;
    height: 100vh;
    display: flex;
    margin: 0px;
    padding: 0px;
    flex-direction: column;
}

header {
    height: 20%;
    width: 100%;
    display: flex;
    background-color: #002855;
}

.navicon > span {
    display: block;
    background-color: whitesmoke;
    width: 20px;
    height: 1px;
    margin: 3px;
    padding: 1px;
    /**/
    grid-column: 1;
    /**/
}
.navicon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0%;
    padding: 10px;
    /**/
    /**/
}
.navicon:hover {
    margin-left: 0;
}
.navicon:hover > span {
    display: none;
}
.navicon:hover .navmenu {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    justify-content: space-evenly;
    align-items: center;
    background-color: #002855;
    /*display: flex;*/
    flex-direction: column;
    min-width: 150px;
    max-width: 200px;
    min-height: 200px;
    margin-bottom: -100px;

    z-index: 100;

    /* margin-left: -10px; */
    /**/
    /**/
}
.navicon:hover a:hover {
    color: #eaaa00;
}
.navmenu {
    display: none;
}
.navmenu > a {
    color: #d3d3d3;
    padding: 5px;
}

.company {
    background: #002855;
    width: 75%;
    color: white;
    align-content: center;
}

.call_to_action {
    background-color: #eaaa00;
    width: fit-content;
    color: #002855;
    font-size: 20px;
    text-align: center;
    align-content: center;
    margin-left: auto;
    padding: 20px;
}

.headline {
    height: fit-content;
    width: 100%;
    font-size: 2cgi;
    text-align: center;
    justify-content: center;
    display: flex;
}

.content {
    width: 100%;
    height: 90%;
    display: flex;
    height: fit-content;
}

#hotshot {
    width: 50%;
    max-width: 50%;
    object-fit: fit;
    display: flex;
}
.text {
    width: 50%;
    background-color: #d9dddc;
    text-align: left;
    padding-top: 1%;
    padding-bottom: 1%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

p {
    font-size: 1.5vw;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 60ch;
    height: fit-content;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 1%;
    padding: 1.5%;
}

ul,
li {
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 70ch;
    height: fit-content;
    margin-top: 0;
    margin-bottom: 0;
    padding: 4px;
    margin-left: 4%;
    margin-right: 4%;
}

.text > h2 {
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 60ch;
    height: fit-content;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 1%;
    padding: 1.5%;
}

li::marker {
    content: "- ";
}

footer {
    height: fit-content;
    width: 100%;
    background-color: #002855;
    color: white;
    text-align: center;
    align-content: center;
}

.contact-info {
    text-align: center;
    width: 100%;
    justify-items: center;
    display: flex;
    flex-direction: column;
    height: fit-content;
    min-height: 100vh;
}

.contact-info > a {
    padding: 10px;
}

#blog {
    align-content: center;
}

.apply {
    background-color: #d9dddc;
}
.apply > iframe {
    width: 100vw;
    height: 100vh;
    min-width: 75vw;
    min-height: 75vh;
    border: 0;
    padding: 10;
}

.post-content {
    justify-items: center;
    align-items: center;
}

.post {
    padding-bottom: 50px;
}
.post > p {
    width: 100%;
    background-color: #d9dddc;
    padding: 15px 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.contact-bg {
    background-color: white;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
}
.contact-info {
    background: #d9dddc;
    max-width: 30%;
    height: fit-content;
    min-height: 0px;
}

.contact-info > * {
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

@media only screen and (max-width: 920px) {
    .headline {
        width: 100%;
        padding: 0px;
        margin-top: 10px;
    }
    .content {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .text {
        width: 100%;
    }

    p {
        font-size: 20px;
    }

    ul,
    li {
        min-width: 0;
        font-size: inherit;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100ch;
        height: fit-content;
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 2%;
        padding: 1.5%;
    }

    #hotshot {
        object-fit: stretch;
        width: 100%;
        max-width: 90%; /* Changed from max-width to width */
        height: auto; /* Allows the height to scale proportionally */
        max-height: 30%;
        margin-bottom: 4%;
    }
}
