
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-wrap: wrap;
}

body {
    background-color: rgb(170, 216, 182);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    height: auto;
    width: 100%;
}

.container{
    border-radius: 100px;
    margin: auto;
    /* display: grid; */
    display: flex;
    width:70%;
    min-height: 350px;
    height:auto;
    /* border: 3px solid green; */
    justify-content: center; 
    align-items: center;
    box-shadow: 0 0 20px rgb(72, 72, 72);
}
/* justify-content puts the boxes from the left to the center 
    display: flex allows the two sides to be next to each other instead of on top of each other
*/

.left-column{
    border-radius: 100px 0 0 100px;

    /* display: flex; */
    /* grid-template-columns: 15fr 70fr 15fr; */
    height: 95vh; 
    width: 25%;
    align-items: center;
    justify-content: center;
    background-color: rgb(40, 76, 4);
    color: white;
    text-align: left;
    font-size: small;
    /* border: 3px solid red; */
}  
/* vh is vertical height (?) px is pixels */
.left-column-text{
    position: relative;
    top:50%;
    margin: 5%;
    overflow-wrap: break-word;
    /* border: 3px solid purple; */
}

.right-column-text{
    position: relative;
    overflow-wrap: break-word;
    /* border: solid pink; */
    /* display: none; */
}

.right-column{
    border-radius: 0 100px 100px 0;
    display: flex;
    /* grid-template-columns: 15fr 70fr 15fr; */
    width: 75%;
    height: 95vh;
    align-items: center;
    background-color: rgb(255, 255, 255);
    
}

.image-holder{
    background-color: blueviolet;
    position: absolute;
    left: 30%;
    top:30%;
    width: 100px;
}