@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300&display=swap');
body {
    background-color: rgb(28, 37, 51);
}

.logo {
    width: 200px;
}

.redes_sociales {
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

.content-page {
    background-color: rgba(0, 0, 0, 50%);
}

.contenedor-video {
    width: 100%;
    text-align: center;
}

.video {
    width: 60%;
}

h1 {
    font-family: 'Kanit', sans-serif;
    font-size: 30pt;
    color: #f5f5f5;
}

h2 {
    font-family: 'Kanit', sans-serif;
    font-size: 20pt;
    color: #f5f5f5;
}

h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 18pt;
    color: #f5f5f5;
}

h4 {
    font-family: 'Kanit', sans-serif;
    font-size: 16pt;
    color: #f5f5f5;
}

p {
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    color: #f5f5f5;
}

label {
    font-family: 'Kaint', sans-serif;
    font-size: 15px;
    color: #f5f5f5;
}

ul li {
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    color: #f5f5f5;
}

.redes_nav {
    list-style: none;
}

.redes_nav li {
    display: inline-block;
    padding: 5px;
}

.padding-content {
    padding: 5px;
}


/* Animación */

.animated {
    /* background-image: url(/css/images/logo.png);*/
    background-repeat: no-repeat;
    background-position: left top;
    /*padding-top: 95px;
    margin-bottom: 60px;*/
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.footer-text {
    font-family: 'Kanit', sans-serif;
    font-size: 12px;
    color: #f5f5f5;
}

.modal label {
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    color: #000;
}

.modal input,
textarea {
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
}