body{
    margin:0;
    background-color: beige;
    font-size: 16px;    
    font-family: 'Inter', sans-serif;
}

.content{
    margin-left: 400px;
    max-width: 700px;
    margin-top: 70px;

}

header{
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 60px;
    background-color: black;
    z-index: 100;
}

.logo{
    font-size: 20px;
    font-weight: 300;
    color: white;
    opacity: 0.7;
    margin-top: 15px;
    margin-left: 20px;
}

h1{
    width:100%;
    text-align: left;
    font-size: 32px;
    font-weight: 700;    
    margin-bottom: 20px;
}
h2{
    width: 100%;
    text-align:left;
    font-size: 20px;
    font-weight: 400;    
    margin-bottom: 34px;
}
p{
    font-family: Lora, serif;
    font-size: 19px;
    font-weight:  300;
    line-height: 28px;
    margin-bottom: 30px;
}

.sidebar{
    position: fixed;
    top:0;
    left:0;
    z-index: 99;
    height: 100vh;
    width: 250px;
    background-color:red;
    padding: 80px 20px 20px 20px;
    color: white;  
    transition: all 0.5s;

}
.sidebar-title{
    opacity: 0.7;
    font-size: 20px;
    font-weight: 400;
}

.toggle{
    position: fixed;
    top:200px;
    left: 300px;
    display: flex;
    align-items: center;
    z-index: 103;    
}

.collapsed{
    transform: translate3d(-100%, 0, 0);
}

.image-container{
    display: flex;
    justify-content: center;
    /* margin-left: 400px;     */
    margin-bottom: 24px;
    background-color: yellow;
}

.image{
    height: 200px;
}

