*{
    box-sizing: border-box;
}
body{
    background-color: antiquewhite;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
h1{
    text-align: center;
    color: cornflowerblue;
}
.auto{
    color: aliceblue;
    background-color: crimson;
    height: 150px;
    width: 300px;
    border: 3px solid cornflowerblue;
    padding: 5px;
    margin: 10px;
    overflow: auto;
}
.hidden{
    color: aliceblue;
    background-color: crimson;
    height: 150px;
    width: 300px;
    border: 3px solid cornflowerblue;
    padding: 5px;
    margin: 10px;
    overflow: hidden;
}
.scroll{
    color: aliceblue;
    background-color: crimson;
    height: 150px;
    width: 300px;
    border: 3px solid cornflowerblue;
    padding: 5px;
    margin: 10px;
    overflow: scroll;
}
.def{
    color: aliceblue;
    background-color: crimson;
    height: 150px;
    width: 300px;
    border: 3px solid cornflowerblue;
    padding: 5px;
    margin: 10px;
    font-weight: bold;
}
h2{
    color: cornflowerblue;
    text-decoration: underline;
}
.p{
    color: cornflowerblue;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 25px;
}