*{
    margin: 0;
    padding: 0;
    font-family: 'Kanit', sans-serif;
    color: white;
}

a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

ul {
    list-style: none;
}

/* -----------NAVEGACION----------- */

.cabeza {
    display: flex;
    text-align: center;
    background: #202020;
    padding: 10px;
    align-items: center;
    box-shadow: 0px 0px 30px green;
}

.cabeza img {
    border-radius: 50%;
}

nav {
    display: flex;
    margin: auto;
}

nav ul {
    display: flex;
    justify-content: center;
    margin: auto;
}

nav ul li {
    display: flex;
    margin: auto;
    padding: 10px;
    text-decoration: none;
}

/* -----------PRESENTACION---------- */

.presentacion {
    width: 100%;
    height: 550px;
    background: url("img/same.jpg") no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-bottom: 50px;
    color: white;
}

.presentacion a {
    padding: 4px;
    background: green;
    box-shadow: 3px 3px 0px red;
    color: white;
    transition: 0.2s;
}

.presentacion a:hover {
    box-shadow: none;
}

body {
    background: #202020;
}

/* -----------NOSOTROS----------- */

.nosotros {
    text-align: center;
    margin: 1em;
}

.nosotros h2 {
    font-size: 2em;
    font-family: 'Alfa Slab One', cursive;
    font-weight: lighter;
}

/* -----------GALERIA---------- */

.galeria {
    margin: 100px;
}

.galeria img {
    margin: 10px;
    box-shadow: 8px 8px 0px green;
    transition: 0.5s;
}

.galeria img:hover {
    transform: translateY(-24px);
}

/* -----------PROPAGANDA----------- */

.propaganda {
    margin: 2em;
}

.propaganda div {
    margin: 2em;
}

.propaganda div a {
    padding: 10px;
    background: green;
    box-shadow: 4px 4px 0px red;
    transition: 0.5s;
}

.propaganda div a:hover {
    box-shadow: none;
}

/* -----------PIE DE PAGINA----------- */

.pie {
    text-align: center;
    background: #252525;
    padding: 10px;
    box-shadow: 0px 0px 30px green;
}


/* -----------NORMATIVAS----------- */
.normativas {
    text-align: center;
    margin: 2em;
}

.normativas ul {
    text-align: left;
    list-style: circle;
}

.normativas h3 {
    color: red;
}


/* -----------DISCORD---------- */
.discord {
    text-align: center;
}

.discord__texto {
    margin: 2em;
}

.invitacion {
    margin: 4em;
}

.invitacion a { 
    padding: 10px;
    background: green;
    box-shadow: 4px 4px 0px red;
    transition: 0.2s;
}

.invitacion a:hover {
    box-shadow: none;
}

/* -----------FORMULARIO---------- */
.contenedor__formulario {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5em;
    border-radius: 10px;
    padding: 20px;
}

.formulario {
    text-align: center;
}

.resultados {
    text-align: center;
    margin: 6em;
}

.contenedor__formulario input {
    background: white;
    padding: 10px;
    width: 500px;
    border: none;
    margin: 1em;
    border-radius: 10px;
    box-shadow: 0px 0px 15px green;
    color: black;
}

#enviar {
    padding: 10px;
    border: none;
    background: green;
    box-shadow: 4px 4px 0px red;
    transition: all 0.5s;
}

#enviar:hover {
    box-shadow: none;
}

.enviado {
    margin: 10em;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    font-size: 2em;
}

.enviado a {
    padding: 2px;
    background: #ffffff;
    box-shadow: 0px 0px 30px green;
    color: black;
}

@media only screen and (max-width: 500px) {
    img {
        width: 200px;
    }

    .cabeza {
        display: none;
    }
    
}