*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    background-color:blueviolet;
    color: rgb(255, 255, 188);
    font-family: Arial, Helvetica, sans-serif;
}


.container{
    max-width: 1100px;
    height: 100vh;
    margin: 0 auto;
    /* border: 1px solid red; */
    display: flex;
    justify-content: center;
    align-items: center;
}

h1{
    font-weight: 900;
    text-decoration: underline;

}
