.bold{
    font-weight: bold;
}
body{
    font-family: "Roboto", sans-serif;
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    background-color: #fffbf8;
    overflow-x: hidden;
}

h1{
    font-size: 3em;
}
.container{
    display: flex;
    min-height: 100vh;
}

.centered{
    text-align: center;
    margin-top: 20px;
}

.left-side{
    display: inline-block;
    max-width: 49%;
    align-items:center;
    justify-content:center;
    margin-left: 15%;
    overflow-x:visible;
}

.left-side img{
    width:450px;
    height:450px;
    object-fit:cover; /* crop if necessary to fill the area */
    display:block;
}

.right-side{
    position: absolute;
    top: 30%;
    left: 50%;
    display: inline-block;
    max-width: 40%;
    align-items:center; /* vertical center */
    justify-content:flex-start;
    font-size: 1.3em;
}
