* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}

.header-container {
    width: 100vw;
    background-color: #1f2937;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.logo-text {
    font-size: 24px;
    color: #f9faf8;
    margin-left: 10%;
}
.links {
    margin-right: 5%;
}
.link-text {
    font-size: 18px;
    color: #e5e7eb;
    padding: 5px;
}

.hero-container {
    width: 100vw;
    background-color: #1f2937;
    display: flex;
    justify-content: space-around;
}
.hero-content {
    display: flex;
    align-items: center;
}
.block-centered {
    display: block;
    align-items: center;
    margin: 5px;
    margin-left: 20%;
}
.block-centered div {
    padding: 5px;
    max-width: 60%;
}
.block-centered button {
    padding: 5px;
    margin: 5px;
}
.hero-content .main-text {
    font-size: 48px;
    color: #f9faf8;
    font-weight: 900;
}
.hero-content .secondary-text {
    font-size: 18px;
    color: #e5e7eb;
}
.signup {
    background-color: #3882f6;
    border-radius: 5px;
    color: #e5e7eb;
    cursor: pointer;

    width: 100px;
    font-weight: 900;
}
.hero-image {
    width: 30%;
    height: auto;
    max-height: 400px;
    margin: 20px 15% 20px 0;
    /* object-fit: cover; */
}
.interest-image {
    width: 30%;
    height: auto;
    max-height: 400px;
    margin: 20px 15% 20px 0;
}
.gallery-container {
    width: 100vw;
    display: flex;
    flex-direction: column;
}
.gallery-header-text {
    font-size: 36px;
    color: #e5e7eb;
    font-weight: 900;
    
    margin: 0 auto;
    padding: 20px;
}
.blurb-centered {
    display: block;
    text-align: center;
    max-width: 40%;
    margin: 0 auto;
}
.blurb-text {
    color:#1f1f1f;
}
.gallery-item-container {
    display: flex;
    justify-content: space-between;

    padding: 20px;
}
.gallery-item {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    align-items: center;
}
.gallery-image {
    border: 3px solid #3882f6;
    border-radius: 10%;
    width: 250px;
    height: 250px;
}
.gallery-text {
    color: #e5e7eb;
    max-width: 250px;
    text-align: center;
    text-decoration: underline;
}
.gallery-text:hover {
    color: #91b6ff;
    cursor: pointer;
    text-decoration: underline;
}

.odin-container{
    width: 100vw;
    background-color: #e5e7eb;
    display: flex;
    flex-direction: column;
}
.odin-header-text {
    font-size: 36px;
    color: #1f1f1f;
    font-weight: 900;
    text-decoration: underline;
    
    margin: 0 auto;
    padding: 20px;
}
.odin-header-text:hover {
    color: #91b6ff;
    cursor: pointer;
    text-decoration: underline;
}
.odin-text {
    color: #1f1f1f;
    max-width: 250px;
    text-align: center;
    text-decoration: underline;
}
.odin-text:hover {
    color: #91b6ff;
    cursor: pointer;
    text-decoration: underline;
}

footer {
    width: 100vw;
    background-color: rgb(33, 37, 41);
    color: #f9faf8;

    margin: 0 auto;
    padding: 30px;
    text-align: center;
}

/* Mobile-first approach: Styles for screens smaller than 768px */
@media (max-width: 768px) {
    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
        
    }
    .hero-content {
        margin-left: 40%;
        text-align: center;
        width: 100%;
    }
    .block-centered {
        margin: 0;
        max-width: 90%;
    }
    .hero-content .main-text {
        font-size: 36px;
    }
    .hero-image, .interest-image {
        width: 80%;
        max-height: 300px;
        margin: 20px 0;
    }

    .gallery-container {
        width: 100%;
        padding: 10px;
    }

    .gallery-item-container {
        flex-direction: column;
        align-items: center;
    }

    .gallery-item {
        margin-bottom: 20px;
        width: 90%;
    }

    .gallery-image {
        width: 100%;
        height: auto;
    }

    .blurb-centered {
        max-width: 90%;
    }

    .odin-container {
        padding: 10px;
    }

    .odin-text {
        max-width: 90%;
    }

    footer {
        padding: 20px;
        font-size: 14px;
    }
}
