
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}





body{
    background-color: ivory;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
    font-family: verdana;
    line-height: 50px;
    font-size: 150px;
}

