h1{
    color:pink;
    font-size:  100px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: center;
}

div{
    display: flex;
    flex-direction: row;
    justify-content: center;


}


p{
    border: 2px solid purple;
    padding: 10px;
    margin: 0px 20px;
    width: 400px
}

ul{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    
}

li{
    background-color: rgb(122, 118, 255);
    border: 10px rgb(255, 255, 197);
    border-radius: 10px;
    width: 1000 px;
    color: white;
    text-align: center;
} 