@import url('https://fonts.googleapis.com/css2?family=Paprika&display=swap');

body{
    margin: 0;
    padding: 0;
    background-color: black;
}




#inicio{
    z-index: -1;
    position: fixed;
    margin: -100px auto;
}

.encabezado{
    background-color: black;
    width: 100%;
    /* margin-left: 20px; */
    /* padding-left: 20px; */
    /* padding-right: 20px; */
    height: 120px;
    display: flex;
    flex-direction: row;
    /* flex-shrink: initial; */
    /* flex-wrap: wrap; */
    align-items: center;
    justify-content: space-between;
    /* justify-content: left; */
}

h1{
    font-family: 'Paprika', cursive;
    color: #4287f5;
    padding-right: 20px;
}

#logo{
    padding-left: 20px;
    width: 100px;
    height: 100px;

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

button{
    background-color: black;
    color: white;
    width: 300px;
    height: 100px;
    border: 5px red ridge;
    border-radius: 20px;
    font-size: 16px;
    font-family: 'Paprika', cursive;
}

select{
    background-color: black;
    color: white;
    width: 250px;
    text-align: center;
    height: 50px;
    border: 5px red ridge;
    border-radius: 20px;
    font-size: 16px;
    font-family: 'Paprika', cursive;
}

/* #inicio{
    display: flex;
    justify-content: center;
} */

input{
    background-color: black;
    color: white;
    width: 120px;
    text-align: center;
    height: 50px;
    border: 5px red ridge;
    border-radius: 20px;
    font-size: 16px;
    font-family: 'Paprika', cursive;
}

select:hover{
    background-color: black;
    transition: 0.3s;
    width: 255px;
    height: 55px;
}

button:hover{
    transition: 0.3s;
    width: 305px;
    height:110px;
    background-color: #4287f5;
}

input:hover{
    transition: 0.3s;
    width: 125px;
    height: 56px;
} 


#presentacion{
    display: flex;
    flex-wrap: wrap;
    opacity: 0.85;
    flex-direction: column;
    justify-content:space-around;
    align-items: center;
    width: 500px;
    height: 300px;
    border: 50px ridge black;
    border-radius: 25%;
    background-color: silver;
    margin: 200px auto;
    /* margin-right: 200px; */
    /* z-index: -1; */
}




#imagenes{
   
    width: 200px;
    height: 100px;
  
}

#imagenes img{
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

