* {
    font-family: mastery kindon;
}

@font-face {
    font-family: mastery kindon;
    src: url ( Mastery Kingdom,otf);
}

h1 {
    font-weight: bold;
    display: block;
    font-size: 7em;
    font-weight: 900;
    color: black;
}

nav {
    display: flex;
    width: 100%;
    justify-content: space-around;
    height: 70px;
    line-height: 80px;
    z-index: 111;
}

.logo {
    display: flex;
    font-size: 40px;
    font-weight: 800;
    color: rgb(102, 2, 2);
    cursor: pointer;
}

.botones {
    display: flex;
}

.botones li {
    list-style: none;
    margin: 0 15px;
}

.botones li a {
    font-size: 25px;
    color: rgb(143, 3, 3);
    letter-spacing: 3px;
    text-decoration: none;
    text-transform: capitalize;

} 

.botones li:hover a, 
.redes a:hover {
    color: black;

}

.redes a {
    font-size: 30px;
    color: rgb(143, 3, 3);
    margin: 25px 10px;
}

.logotipo {
    height: 30px;
    color: rgb(102, 2, 2);
    text-decoration: none;
}

.inicio {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding: 0 10%;
    overflow: hidden;
    z-index: 3;
}

.inicio::before {
    position: absolute;
    content: '';
    height: 600px;
    width: 600px;
    border-radius: 50%;
    left: -15%;
    top: 40%;
    background: linear-gradient(45deg,black,rgb(102, 2, 2));
    animation: animacion1 20s linear infinite;
}

.inicio::after {
    position: absolute;
    content: '';
    height: 200px;
    width: 200px;
    border-radius: 50%;
    left: 65%;
    top: 12%;
    background: linear-gradient(45deg,black,rgb(102, 2, 2));
    z-index: 1;
    animation: animacion 20s linear infinite;
}


.texto {
    width: 50%;
    z-index: 4;
}

.linea {
    display: block;
    position: relative;
    font-size: 35px;
    letter-spacing: 5px;
    color: rgb(102, 2, 2);
}

.multitext {
    color: rgb(102, 2, 2);
    text-transform: capitalize;
}

p {
    display: block;
    width: 90%;
    font-size: 1.2em;
    color: black;
}

.dentro {
    position: relative;
    width: 100%;
    height: 100%;
}

.dentro img {
    position: relative;
    height: 100%;
    width: calc(130% - 80px);
    top: -90px;
    right: 50px;
}

.dentro::before {
    position: absolute;
    content: '';
    height: 600px;
    width: 600px;
    border-radius: 50%;
    left: 70%;
    top: 10%;
    background: linear-gradient(45deg,rgb(255, 13, 13),rgb(102, 2, 2));
    animation: animacion2 20s linear infinite;
}

@keyframes animacion2 {

    50% {
        top: 100px;
        left: 500px;
    }
}


@media (max-width: 982px) {
    .redes a {
        font-size: 30px;
        color: rgb(143, 3, 3);
        margin: 25px 10px;
        display: none;
    }
}

@media (max-width: 850px) {
    .logo {
        display: none;
        font-size: 40px;
        font-weight: 800;
        color: rgb(102, 2, 2);
        cursor: pointer;
    }
}

@media (max-width: 992px) {
    p {
        display: none;
        width: 90%;
        font-size: 1.2em;
        color: black;
    }
}

@media (max-width: 982px) {
    .botones li a {
        font-size: 20px;
        color: rgb(143, 3, 3);
        letter-spacing: 3px;
        text-decoration: none;
        text-transform: capitalize;
    } 
}

@media (max-width: 992px) {
    h1 {
        font-weight: bold;
        display: block;
        font-size: 6em;
        font-weight: 900;
        color: black;
    }    
}

@media (max-width: 575.98px) {
    h1 {
        font-weight: bold;
        display: block;
        font-size: 6em;
        font-weight: 900;
        color: black;
    }    
}

@media (max-width: 992px) {
    .dentro img {
        position: relative;
        height: 100%;
        width: calc(130% - 80px);
        top: 0px;
        right: 50px;
    }
}

@keyframes animacion {

    50% {
        top: 100px;
        left: 1200px;
    }
}

@keyframes animacion1 {

    50% {
        top: 300px;
    }
}

@media (max-width: 575.98px) {
    .dentro img {
        position: relative;
        height: 500px;
        width: auto;
        top: 0px;
        right: 300px;
    }
}