*{
    box-sizing: border-box;
}
body{
    background-color: rgb(255, 165, 185);
    font-family: 'Times New Roman', Times, serif;
}
h1{
    color: rgb(105, 40, 54);
    text-decoration: underline;
    text-align: center;
}
h3{
    color:rgb(58, 18, 27) ;
    font-size: 25px;
}
.box1{
    background-color: rgb(255, 224, 183);
    text-decoration: none;
    width: 200px;
    height: 110px;
    display: block;
    text-align: center;
    padding: 20px;
    margin: 10px;
    border: 2px dotted rgb(136, 57, 54);
}
.box2{
    background-color: rgb(255, 224, 183);
    text-decoration: none;
    width: 200px;
    height: 110px;
    display: block;
    text-align: center;
    padding: 20px;
    margin: 10px;
    border: 2px dotted rgb(136, 57, 54);
    overflow: auto;
}
.box3{
    background-color: rgb(255, 224, 183);
    text-decoration: none;
    width: 200px;
    height: 110px;
    display: block;
    text-align: center;
    padding: 20px;
    margin: 10px;
    border: 2px dotted rgb(136, 57, 54);
    overflow: hidden;
}
.box4{
    background-color: rgb(255, 224, 183);
    text-decoration: none;
    width: 200px;
    height: 110px;
    display: block;
    text-align: center;
    padding: 20px;
    margin: 10px;
    border: 2px dotted rgb(136, 57, 54);
    overflow: scroll;
}