body {
    background-color: rgb(41, 41, 41);
    margin: 20px;
}
h1 {
    color: whitesmoke;
    font-family: Roboto, verdana, arial;
    border: 5px solid;
    border-radius: 5px;
    text-shadow: 3px 3px 5px;
}
p {
    font-family: "lucida console", "courier new";
    font-size: 14px;
    font-weight: bold;
    font-style: italic;
    border-bottom: 3px solid;
    border-left: 3px dotted;
    border-top: 3px solid;
    border-right: 3px dotted;
    border-radius: 5px;
}
#p1 {
    color: tomato;
}
#p2 {
    color: rgb(102, 222, 255);
}
#p3 {
    color: #59ff5f;
}
#p4 {
    color: hsl(286, 83%, 55%);
}
.box {
    width: 100px;
    height: 100px;
    box-shadow: 5px 5px 5px rgb(24, 24, 24);
    border: 5px solid;
}
#box1 {
    background-color: rgb(51, 51, 51);
    margin-left: 50px;
}
#box2 {
    background-color: rgb(71, 71, 71);
    margin: auto;
}
