*{
    padding:0;
    margin:0;
    box-sizing: border-box;
}
body{
    background-image: linear-gradient(rgb(77, 168, 77),rgb(65, 64, 64));
    width: 100%;
    height:100vh;
}

#container{
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50% -50%);
    padding:50px;
    width: 500px;
    text-align: center;
    font-size: 50px;
    color:white;
    text-shadow: -2px 0 #000, 0 2px #0000, 2px 0 #0000, 0 -2px #0000;
    font-family: cursive;
    box-shadow: 2px 2px 4px white;
    
}