*{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    text-align: center;
}
.main-container{
    display: flex;
    flex-direction: column;
    padding: 25px;
}
header{
    display: flex;
    justify-content: space-around;
    background-color: #354f52;
    padding: 10px 0;
    color: white;
}
header img{
    width: 150px;
    height:150px;
    padding: 15px;
}
.emotions{
    display: flex;
    justify-content: space-between;
}
.Emotions-container{
    text-align: center;
    border: 1px solid grey;
    padding:10px 15px ;
}
.checkbox-Container{
    margin-top: 10px;
}
.button-Container{
    margin-top: 20px;
}
button{
    background-color: #354f52;
    padding: 10px 25px;
    cursor: pointer;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
}
.render-Image-container{
    display: none;
    position: fixed;
    right:0;
    top:0;
    left: 0;
    bottom: 0;
    margin: auto;
    background-color: #15616d;
    width: 400px;
    height:400px;
    padding: 20px;
}
.render-Image-container img{
    display: block;
    width: 100%;
    height: 300px;;
    margin: auto auto;
    padding-top: 100px;
}
.button-container{
    padding: 10px;
    position: absolute;
    float: right;
    right: 0;
    top: 0;
}
