* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  

body{
    width:100%;
    height:100%;
}

section{
    width:100%;
    height:auto;
    min-height:100vh;
    background:url('../img/bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position:center center;
    border:1.8vh solid #25b277;
    box-sizing: border-box;
}

#main{
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    padding:8vh 0;
}

#logo{
    max-width: 480px;
    width:90%;
}

#logo img{
    width:100%;
    height:auto;
}

#socials{
    position:fixed;
    top:2vh;
    right:2vh;
    display:flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
}

#socials a{
    margin:16px 12px 16px 0px;
    transition:all .3s;
}

#socials a:hover{
    transform:scale(1.2);
}

#buttons{
    display:flex;
    flex-direction:row;
    align-items: center;
    justify-content: center;
    width:90%;
    max-width:480px;
    margin-top:12px;
}

#buttons a{
    display:inline-block;
    margin:0 8px;
    cursor: pointer;
    transition:all .3s;
}

#buttons a img{
    width:100%;
}

#buttons a:hover{
    transform:scale(1.1);
}

audio{
    margin-top:16px;
}

#mobile{
    color: white;
    font-family: helvetica, sans-serif;
    text-decoration: none;
    font-size: .8em;
    padding: 12px;
    background: #25b277;
    border-radius: 16px;
    font-weight: bold;
    line-height: 100%;
}

@media only screen and (max-width: 600px) {
    #socials{
        position: absolute;
        width: 100%;
        margin: 24px auto 12px auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        left: 0;
        right: 0;
    }

    #socials a{
        margin:8px 12px 0px 12px;
    }
}
