*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato",sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items:center;
    text-align: center;
    height:110vh;
    background: url(background.png);

}

.container{
 width: 550px;
 height: 450px;   
}

.header{
    font-size: 1.4rem;
    color: rgb(247, 248, 250);
    background-color:  rgb(72, 41, 41);
    width:80%;
    margin:20px auto;
    border-radius: 5px;
}

.main-content{
    width:100%;
    height:300px;
    border-radius: 15px;
    padding: 50px 40px;
    background-color: rgb(237, 212, 178);
    box-shadow: 0 0 10px;
}

.main-content .text{
    font-size: 2rem;
    line-height:1.5;
}

.main-content .person{
    font-size: 1.8rem;
    color: rgba(255, 0, 0, 0.247);
    text-transform: uppercase;
    margin-top: 20px;
}

.button{
    background-color:rgb(44, 44, 44) ;
    color: antiquewhite;
    font-size: 1.3rem;
    padding: 10px 15px;
    margin-top: 20px;
    border-radius: 5px;
}

.button:active{
    background-color: rgb(0, 0, 0);
}
