*{
    box-sizing: border-box;
}
body{
    background-color: rgb(165, 190, 255);
    font-family:Arial, Helvetica, sans-serif;
    font-size: large;
}
h1{
    color: rgb(171, 39, 68);
    text-align: center;
}
h3{
    color:rgb(160, 30, 58) ;
    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  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  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  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  rgb(136, 57, 54);
    overflow: scroll;
}