body {
    padding: 0px;
    margin: 0px;
    font-family: Verdana, Geneva, sans-serif;
    background-color: #ffffff;
    height: 100%;
    overflow: hidden;
    animation-name: drop;
    animation-delay: 3s;
}
section#content {
    margin: auto;
    min-height: 300px;
    position: relative;
    background-color: #666565;
    border-radius: 25px;
    overflow: hidden;
    text-align: center;
    padding: none;
    box-shadow: 10px 10px 5px black;
    max-width: 50%;
    top: 180px;
    animation-name: fall;
    animation-duration: 2s;
    min-width: 550px;
    max-width: 600px;
}
h1 {
    padding: 10px;
    text-align: center;
    border-radius: 25px;
    margin: 0px;
}

div.angle{
    text-align: center;
}
.left{
    float: left;
}
.right{
    float: left;
}
div#box{
    text-align: center;
    border-radius: 25px;
    margin: 1%;
    height: 270px;
    width: 48%;
    background-color: #878787   ;
    padding-bottom: 0px;
    transition: 1s;
    box-shadow: none;
}
div#box:hover{
    background-color: #afaeae;
    cursor: pointer;
    box-shadow: 5px 5px 2px grey;
    background-color: #959494;
    bottom: 10px;
    transform: translateY(-10px);
    box-shadow: 0 5px 2px grey;
    background-color: #959494;
}
div#box:active{
    box-shadow: none;
    transform: translateY(0px);
    transition: 250ms;
}
.plain {
    text-decoration: none;
    color: black;
}
div#box p{
    margin-top: 40px;
    color: black;
}
@keyframes fall{
    from{
    }
    to{
    }
}
body{
    background-color: #282c34;
}