*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

a {
    color: #762e16;
}

.header {
    width: 100%;
    height: 100vh;
    background: white;
}

.side-nav {
    width: 25%;
    height: 100%;
    background: #fbdfba;
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px 25px;
    border-right: 10px solid transparent;
    border-image: url(images/frame.png) 8 round;
    border-bottom: none;
}

.logo {
    display: block;
    margin-bottom: 40px;
}

.logo-img {
    width: 87%;
}

.nav-links {
    list-style: none;
    position: relative;
}

.nav-links li{
    padding: 10px 0;
}

.nav-links li a{
    color: black;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 14;
}

.explainer {
    font-size: 13px;
    position: absolute;
    bottom: 0;
    padding-bottom: 25px;
    padding-right: 25px;
}

.header {
    height: auto;
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 25%;
    padding: 25px;
    height:auto;
    background-image: url("images/flower-background.jpg");
    background-size: 800px;
    min-height: 100vh;
}

.main-content-pic {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 25%;
    padding: 25px;
    height:auto;
    background-image: url("images/flower-background.jpg");
    background-size: 800px;
    min-height: 100vh;
}

.image-container img {
    width: 100%; 
    height: auto;
}

.text-box {
    background-color: #fbdfba;
    padding: 20px;
    box-sizing: border-box;
    width: auto; 
    max-width: 400px;
    align-self: flex-start;
    font-size: 13px;
    border: 10px solid transparent;
    border-image: url(images/frame.png) 8 round;
}

.home-image {
    margin-left: 50px;
    width: 50%;
    border: 10px solid transparent;
    border-image: url(images/frame.png) 8 round;
}

@media (min-width: 700px) {
    .mobOpen {
        display: none;
    }
    }

    @media (max-width: 700px) {
        .side-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 105px;
        padding: 20px 25px;
        box-sizing: border-box;
        border-bottom: 10px solid transparent;
        border-right: none;
        border-image: url(images/frame.png) 8 round;
    }
    
        .logo {
            display: inline-block;
            position: absolute;
        }
    
        .logo-img {
            width: 53%;
            min-width: 200px;
            display: inline-block;
        }
    
        .nav-links {
            display: none;
            margin-top: 0;
            background: #fbdfba;
            padding: 25px;
            position: absolute;
            top: 105px;
            left: 0;
            width: 100%;
            box-sizing: border-box;
            padding-top: 20px;
            border-bottom: 10px solid transparent;
            border-image: url(images/frame.png) 8 round;
        }
    
        .mobOpen {
            position: absolute;
            right: 0;
            padding-right: 25px;
            color: black;
            font-weight: bold;
            text-decoration: none;
            padding: 20px 30px;
        }
    
        .explainer {
            display: none;
        }

        .main-content {
            margin-left: 0; 
            padding-top: 125px; 
            width: 100%; 
            box-sizing: border-box; 
            align-items: center;
        }
        .main-content-pic {
            margin-left: 0; 
            padding-top: 125px; 
            width: 100%; 
            box-sizing: border-box; 
            flex-direction: column;
            align-items: center;
        }

        .home-image {
            display:block;
            width: 80%;
            margin-top: 20px;
            margin-left: 0;
            border: 7px solid transparent;
            border-image: url(images/frame.png) 8 round;
        }
    
        .text-box {
            width: 100%; 
            max-width: none; 
            margin: 0 auto;
            padding: 20px; 
            box-sizing: border-box;
        }
    }