*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
main{
    height: 100vh;
    width: 100vw;
    /* background:cyan ; */
    background-image: url(background.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.overlay{
    height: 100%;
    width:100%;
    background-color: rgba(255,255,0,0.2);
}
p{
    font-family: "Playwrite PE", cursive;
    color:aliceblue;
    text-align:center;
    position: absolute;
    top: 50px;
    left: 50px;
    transform: translate(-50%,-50);
}