body,html{
    width: 100%;
    height: 100%;
    margin: 0 !important;
    background-image: url("../images/bg.png");
    color: white;
}

a{
    text-decoration: none;
    color: white;
    margin: 60px;
    border-radius: 20px;
}

#container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#main{
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    display: flex;
    align-items: stretch;
    background-color:rgba(0, 0, 0, 0.3);
    box-shadow: -1px -1px 40px 3px rgba(0,0,0,0.7);
    flex-flow: wrap;
}
hr {

    width: 100%;
    display: none;
}

.block{
    background-color: rgba(0, 0, 0, 0.15);
    width: 300px;
    height: 300px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    transition: 0.4s;
    padding: 10px;
    order: 3;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;

}

.block:hover{
    width: 340px;
    height: 340px;
    margin: -20px;
    transition: 0.7s;
    letter-spacing: 3px;
}

