@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
*, *::before, *::after {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

body {
    background-color: #000;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

p {
  font-size: 2em;
  padding: .1em;
  margin: 5px 0;
  color: var(--text-primary);
  width: 300px;
}
/* Nav Bar */

header nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    animation: fadeInDown .8s;
}

header nav .header_links ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

header nav .header_links ul li, section.main ul li {
    list-style-type: none;
}

header nav .header_links ul li a {
    outline: none;
    text-decoration: none;
    color: #a6a8b8;
    padding: 5px 12px;
    transition: 0.3s all;
    font-size: 15px;
}

header nav .header_links ul li a:hover {
    color: white;
}

header nav .header_logo img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    object-fit: cover;
    border: 5px solid #3b3d4e93;
    cursor: pointer;
}

/* Responsive nav bar */

@media only screen and (max-width: 630px) {
    header nav {
        display: flex;
        flex-direction: column;
    }
    header nav .header_logo {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 320px) {
    header nav .header_links ul {
        display: flex;
        justify-content: center;
        text-align: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* Main */

section.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70vh;
    animation: fadeInUp .8s;
}

section.main img {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    object-fit: cover;
    border: 10px solid #21222b93;
    cursor: pointer;
    margin-bottom: 10px;
}

section.main span {
    color: #fffffe;
    font-size: 30px;
    font-weight: bold;
}

section.main p {
    position: relative;
    top: 50%;
    border-right: 2px solid rgba(138, 63, 63, 0.75);
    white-space: nowrap;
    overflow: hidden;
    color: #94a1b2;
    font-size: 13px;
    animation: typewriter 4s steps(44) 1s 1 normal both, blinkTextCursor 530ms steps(44) infinite normal;
}

section.main ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
}

section.main ul li a {
    color: #a6a8b8;
    display: flex;
    text-decoration: none;
    margin: 20px 5px;
    font-size: 25px;
    padding: 5px;
    transition: 0.2s all;
}

section.main ul li a:hover {
    transition: 0.2s all;
    color: #fff;
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 15em;
    }
}

@keyframes blinkTextCursor {
    from {
        border-right-color: rgba(255, 255, 255, .75);
    }
    to {
        border-right-color: transparent;
    }
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 150px, 0)
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes fadeInDown {
    from {
        transform: translate3d(0, -150px, 0)
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.media-controls {
    margin-top: 5%;
    animation: fadein-bottom 3s;
    -moz-animation: fadein-bottom 3s;
    -webkit-animation: fadein-bottom 3s;
    -o-animation: fadein-bottom 3s;
  }
  
  .button {
    background-color: transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    color: white;
    transition: transform 0.5s, color 0.5s;
  }
  
  .button:hover {
    color: var(--text-highlighted);
    -ms-transform: scale(1.25);
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
  }
  
  .animation-hover {
    transition: color 0.25s;
  }
  
  .animation-hover:hover {
    color: var(--bg-primary);
  }
  
  .play::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 1000;
    content: "\f04b";
  }
  
  .pause::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f04c";
  }
  
  .mute::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f6a9";
  }
  
  .unmute::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f028";
  }
  
  iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 0%;
    pointer-events: none;
  }
  
  .bottom {
    font-size: 10px;
    color: var(--text-subrayado);
    position: relative;
    top: 33vh; 
    font-family: 'Montserrat', sans-serif;
    animation: fadein-bottom 3s;
    -moz-animation: fadein-bottom 3s;
    -webkit-animation: fadein-bottom 3s;
    -o-animation: fadein-bottom 3s;
  }
  
  .text{
    font-size: 19px;
    color: var(--text-subrayado);
  }
  
  .swal2-title, .swal2-html-container{
    font-family: 'Montserrat', sans-serif;
    color: white !important; 
  }
  .fa-discord::hover {
    font-weight: 900;
  }
  #volumeVideo{
    font-size: 10px;
    color: var(--text-subrayado);
    position: relative;
    top: 40;
  
  }
  
