*{
    padding: 0;
    margin: 0;
}
.container{
    background-image: url("./sandiego.jpg");
    width: 100%;
    height: 100vh;
    background-size: cover;
    position: absolute;
}
.content{
    display: block;
    box-sizing: border-box;
    width: 250px;
    height: 250px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: rgba(105, 105, 131, 0.7);
}
.content p, h1,button{
    display: block;

}
.content h1{
    text-align: center;
    color:bisque;
    font-size: 32px;
    line-height: 1.25;
    padding: 10px;
}
.content p{
    text-align: center;
    color:bisque;
    font-size: 16px;
    line-height: 1.25;
    padding: 10px;
}
button{
    width: 80%;
    text-align: center;
    margin: auto;
    padding: 5px;
    background-color: rgb(197, 153, 238);
    color: white;
    cursor: pointer;
    border-radius: 10px;
    margin-top: 10px;
}
button:hover{
 background-color: white;
 color: rgb(197, 153, 238);
}