html {
    height: 100vh;
    width: 100vw;
    background-image: linear-gradient(115deg, #000,#111, #292a2d 40% 59%, #111, #000);
    color: #fff;
    overflow: hidden;
}

body {
    background-color: transparent;
}

a {
    font-family: 'Anton', sans-serif;
    font-style: normal;
    text-decoration: none;
    font-size: x-large;
    color: #fff;
}

h1 {
    font-family: 'Corben', cursive;
    font-style: normal;
    font-weight: normal;
    font-size: 3.5rem;
}

/* Slogan */

.slogan {
    font-size: 4rem;
    text-align: center;

    font-family: 'Corben',cursive;
    font-style: italic;
    text-shadow: -10px 15px #1f1f1f;
    margin-bottom: 15px;
}

/* Logo */
.linktree {
    
    box-shadow: -10px 15px #1f1f1f;
    background: linear-gradient(115deg, #ffffff4c,#eeeeee4c, #d6d5d2 45% 55%, #eeeeee4c, #ffffff4c);
    border-radius: 10px;
    padding: 20px;
    
    width: fit-content;
    margin: 30vh auto 0 auto;
    
}

.logo  {
    align-items: center;
}

#logo {
    width: 250px; 
}

/* Contatos */

.contatos {
    width: 100vw;
}

.contatos ul {
    display: flex;
    flex-flow: row wrap;
    padding: 0;
    
    justify-content: center;
    text-align: left;

    margin: auto;
    list-style: none;
}

.contatos a {
    width: 100%;
    padding: 0.7em;
    border: solid 1px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 1.7rem;
    text-align: center;
    
}

.contatos a:hover {
    background-color: #ffffffcc;
    color: black;
}

.contatos li{
    margin: 15px 15px 35px;
    /* width: 200px; */
}

.contatos li:hover {
    scale: 120%;
    transition-duration: 15ms;
    cursor: pointer;
}

@font-face {
    font-family: 'snicklesregular';
    src: url('snickles-webfont.woff2') format('woff2'),
        url('snickles-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@media screen and (max-width: 800px) {
    .linktree{
        margin-top: 0;
    }

    html{
        overflow-x: hidden;
        overflow-y: scroll;
        height: auto;
    }
}

@media screen and (max-width: 480) {
    .linktree{
        margin-top: 0;
    }

    html{
        overflow-x: hidden;
        overflow-y: scroll;
        height: auto;
    }
}