@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

body {
    margin: 0px;
    padding: 0px;
    background-color: black;
    font-size: 16px;
    overflow: hidden;
    color: white;
    font-family: arial;
}
a {
    text-decoration: none;
    color: #FFB300;
}

.wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.header {
    padding: 20px 0;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 3;
    -moz-transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.logo {
    font-family: "Great Vibes";
    color: white;
    font-size: 3em;
}
.logo span {
    font-family: "Pacifico";
    font-size: .7em;
}

.three-container canva {
    margin-top: 100px;
    display:block;
    clear: both;
}


/*
Estilos para smartphones
*/
@media screen and (max-width: 480px) {
    .wrapper {
        width: 98%;
        padding: 1%;
    }

    canvas {
        width: 100%;
    }

}