*{
    box-sizing: border-box;
}
body{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.box1{
    background-color: rgb(210, 132, 255);
    text-decoration: none;
    width: 100px;
    height: 70px;
    display: block;
    text-align: center;
    padding: 20px;
    margin: 10px;
    border: 2px dotted blue;
}
.box2{
    background-color: rgb(255, 132, 132);
    text-decoration: none;
    width: 100px;
    height: 70px;
    display: inline-block;
    text-align: center;
    padding: 20px;
    margin: 10px;
    border: 2px dotted rgb(0, 247, 255);
}