*{
    margin: 0;
    box-sizing: border-box;
}

#bg-video{
    width: 100%;
    height: 100%;
    position: fixed;
    object-fit:cover;
    z-index: -1;
}

@font-face {
    font-family: 'Tiempos';
    src: url(fonts/TiemposHeadline-Regular.otf);
    
    font-family: 'Haraba';
    src: url(fonts/Harabara\ Mais\ Demo.otf);

    font-family: 'Font';
    src: url(fonts/Brunson.ttf);
}

body{
    background:transparent;
    min-height: 100vh;
    

}

nav{
    background-color: rgb(80, 80, 80);
    padding-top: 5px;
    padding-bottom: 5px;
}

#ul-nav{
    display: flex;
    justify-content: center;
    list-style: none;
    
}

#li-nav{
    display: flex;
    align-items: center;
    padding-right: 50px;
    
}

a{
    display: flex;
    text-decoration: none;
}

#Enc{
    display: flex;
    font-family: 'Haraba' ;
    font-size: 20px;
    font-weight: 800;
    color: rgb(255, 255, 255);
}

#easy{
    display: flex;
    font-family: 'Haraba' ;
    font-size: 20px;
    font-weight: 800;
    color: rgb(219, 152, 6);
}


.section{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 8px;
    background-color: rgba(31, 31, 31, 0.199);
    padding: 5px;
    padding-bottom: 30px;
    margin: 20px;
    margin-top: 5%;


}

#ul-section{
    display: flex;
    justify-content: center;
    list-style: none;
}

#li-section{
    display: flex;
    align-items: center;
    padding-right: 50px;
    padding-top: 5px;
}

#input{
    display: flex;
    color: white;
    background-color: rgb(80, 80, 80);
    border: none;
    border-radius: 5px;
    margin: 5px;
    margin-top: 20px;
    width: 40%;
    outline: none;
    font-size: 12px;
    padding: 7px;


}

#input-personalizada{
    display: flex;
    color: white;
    background-color: rgb(80, 80, 80);
    border: none;
    border-radius: 5px;
    margin: 5px;
    width: 40%;
    outline: none;
    font-size: 12px;
    padding: 7px;


}

.button{
    display: flex;
    background-color:rgb(219, 152, 6);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 15px;

}

.button:hover {
  transform: scale(1.05);
}

.button:active {
  transform: scale(0.98);
}

.output{
    display: none;
    margin-top: 20px;
    background-color: rgba(80, 80, 80, 0.6);
    width: 40%;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.output p{
    color: white;
    margin-bottom: 8px;
}

.output a{
    color: rgb(219, 152, 6);
    font-weight: bold;
    text-decoration: none;
    word-break: break-all;
}

h2{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    padding-top: 10px;
    color: rgba(255, 255, 255, 0.664);
    font-size: 15px;
    font-weight: 100;
}

.Redes {
    display: flex;
    align-items: center;
    filter: invert(100%);
    margin-top: 2%;
    flex-wrap: wrap;
    gap: 6px;
    flex-direction: column;
}

.Redes img {
    margin-right: 5px;
    width: 30px;
    height: 30px;
    transition: 0.3s;
    cursor: pointer;
}

#insta-enceasy{
    font-size: 12px;
    padding-right: 5px;
}

.Redes:hover{
    transform: scale(1.05);
}

.Redes:active{
    transform: scale(0.98);
}

footer {
    position: fixed;
  width: 100%;
  background: none;
  color: white;
  text-align: center;
  padding-top: 5%;
  font-size: 10px;
}

@media (max-width: 768px){

.section{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 8px;
    background-color: rgba(31, 31, 31, 0.432);
    padding: 5px;
    padding-bottom: 30px;
    margin: 20px;
    margin-top: 30%;
}
}