:root{
    --blue: #283c3b;
    --dark-color: var(--black);
    --secondary-dark-color: var(--black);
    --med-color: var(--black);
    --secondary-light-color: #eeddd5;
    --white : #f5f5f5;
    --black : #111111;
}

*{
    box-sizing: border-box;
}

a{
    color: var(--med-color);
    text-decoration: none;
}
 
.container{
    margin: 0 auto;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
 
.imgwrapper{
    display: flex;
    flex-grow: 1;
    flex-basis: 0;
}
 
.img{
    align-self: center;
    width: 100%;
    min-width: 200px;
    height: 100%;
    object-fit:cover;
    border: var(--secondary-dark-color) solid 2px;
}
 
.main{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

/* thing the image and text is in */
.box{
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    gap: 1rem;
    padding-bottom: 30px;
    border-bottom: var(--secondary-dark-color) solid 2px;
}
 
.boximg{
    align-self: center;
    object-fit:cover;
    width: 25vw;
    height: 100%;
    border-radius:20px;
    border: solid 2px var(--secondary-dark-color);
}
 
.content{
    padding: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--dark-color) var(--white);
    text-align: justify;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.content p{
    margin: 0;
    font-size: 1.5vw;
}
 
.headers{
    font-size: 2vw;
    text-align: right;
    font-weight: normal;
    border-bottom: 2px dashed var(--secondary-dark-color);
}
 
 
 
@media(max-width:730px){
    .box img{
        display: none;
    }
    .content p {
        font-size: 16px;
    }
    .headers{
        font-size: 20px;
    }
}
 
@media(max-width:515px){
    .container{
        flex-direction: column;
    }
    .img{
        width: 40%;
        min-width: 40%;
        margin: 0 auto;
    }
}


footer {
    margin-top: -10px;
}
footer a {
    color: var(--white);
}




