body {
    background-color: rgba(238, 226, 187, 0.397);
    height: 100vh;
}

#intro {
    display: flex;
    align-items: center;
    background-color: #00a6eb;
    height: 10em;
}

.intro-content {
    display: flex;
    justify-content: left;
    width: auto;
    position: relative;
    top: 0;
    border-radius: 10px;
}

.intro-content img {
    height: 200px;
    width: auto;
}

/* For screens 800px and below */
@media (max-width: 800px) {
    #intro {
        height: 7em; /* Shrink the header */
    }

    .intro-content img {
        height: 60px; /* Shrink the image */
        width: auto;
    }

    #body {
        margin-top: 80px; /* Adjust for header shrinking */
    }
}

/* For screens 768px and below */
@media (max-width: 768px) {
    #intro {
        height: 6em;
    }

    .intro-content img {
        height: 50px;
    }

    #body {
        margin-top: 70px;
    }
}

/* For screens 320px and below (small mobile screens) */
@media (max-width: 320px) {
    #intro {
        height: 5em;
    }

    .intro-content img {
        height: 40px;
        width: auto;
    }

    #body {
        margin-top: 60px;
    }
}
