body{
    padding: 0;
    margin: 0;
    background-color: #373737;
}
#top-section{
    padding: 0;
    margin: 0;
    padding-bottom: 100px;
    background-color: #373737;
    position: relative;
}
#top-logo{
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 3%;
    margin-bottom:none;
    padding-bottom:none;
    height: 50px;
}
#circle-buttons{
    display: flex;
    justify-content: space-evenly;
    height: 500px;
    align-items: center;
}
.medium-button{
    width: 300px;
    height: 60%;
    font-size: 40px;
}
.large-button{
    width: 300px;
    height: 60%;
    font-size: 40px;
}
.circle{
    background-color: #F2AF0D;
    color: white;
    border: none;
    outline: none;
    border-radius: 100%;
}
.secret-button{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    background-color: #373737;
    border: none;
    outline: none;
}
.secret-button:focus{
    border:none;
    outline:none;
}
@media(max-width: 800px) {
    #circle-buttons {
        height: 500px;
        width: 100%;
        align-items: center;
    }
}