body,
html{
    font-family: sans-serif;
    font-family: Arial;
    background-position: center center;
    background-size: cover;
    margin: 0;
    padding: 0;
    background-color: beige;
    color: #454343;
}
.top{
    position: fixed;
    width: 100%;
    top: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    background: #2d2c2c;
    border-bottom: solid 5px #e18625;
    z-index: 3;
}
.logo{
    width: 75%;
    padding: 10px;
    padding-left: 30px;
    height: auto;
    cursor: pointer;
}
.logo:hover{
    opacity: 0.5;
}
.logo:active{
    opacity: 0.2;
}
.top_btn{
    position: relative;
    right: 30px;
    font-size: 20px;
    background: transparent;
    color: #fff;
    border: none;
    text-transform: capitalize;
    cursor: pointer;
}
.top_btn:hover{
    color: #c2c2c2;
}
.top_btn:active{
    color: #888686;
}
.buttons{
    position: relative;
    width: 100%;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.icon_block{
    position: relative;
    width: 80%;
    display: flex;
    justify-content: center;
}
.icon{
    position: absolute;
    height: 10vh;
    top: 10px;
    left: -30px;
    z-index: 1;
    filter: drop-shadow( 2px 2px 5px gray);
}
.btn{
    position: relative;
    width: 100%;
    height: 10vh;
    /*! top: 120px; */
    margin: 10px;
    text-align: center;
    font-size: 24px;
    background: #cad1b3;
    border: solid 1px gray;
    box-shadow: 7px 7px 15px rgba(50,50,50,0.5);
    outline: none;
    cursor: pointer;
}
.btn:hover{
    box-shadow: 12px 12px 15px rgba(50,50,50,0.3);
}
.btn:active{
    box-shadow: 2px 2px 5px rgba(50,50,50,0.7);
}