* {
    margin: 0;
    padding: 0;
}
body{
    background-color: hsla(81, 95%, 49%, 0.926);
    color: white;
    min-height: 100vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content:center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.container{
    width: 100%;
    margin: auto 10px;
    max-width: 900px;
    padding: 20px 30px;
    border-radius: 8px;
    background-color: hsl(199, 67%, 29%);
    box-shadow: 0 10px 10px 10px rgba(0, 0, 0,2);
    position: relative;
    text-align: center;

}
.container:after{
    content: "";
    position: absolute;
    width: 80%;
    height: 120%;
    background-color: white;
    z-index: -1;
    top: -10%;
    left: 10%;
}
.container p{
    color: whitesmoke;
    line-height: 2px;
    font-size: 18px;
    font-display: itlaic;
}
.container h3{
    color: rgb(255, 255, 255);
    margin: 20px 0 60px 0;
    font-weight: 600;
    text-transform: capitalize;
}
.container button{
    background-color: rgb(72, 255, 0);
    border: none;
    padding: 15px 45px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    color:rgb(21, 22, 21);
    cursor: pointer;
}
.container button:hover{
    filter: brightness(110%);
}
