@font-face {
    font-family: 'big-noodle';
    src: url(fuentes/big_noodle_titling.ttf);
}
@font-face {
    font-family: 'Wicky';
    src: url(fuentes/WickyJavick-YqOXq.otf);
}
body{
  margin: 0;
  padding:0;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
/* A partir de aquí es el header, barra para navegar */
.header{
    background-color: #D8E3E8;
    padding: 15px 50px;
    position: sticky;
}
nav{
    top: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}
#logIn{
    margin-left: 1090px;
}
.menu{
    color: rgb(51, 51, 51);
    margin-left: 50px;
    align-items: center;
    text-decoration: double;
    font-size: 30px;
    font-family: 'big-noodle';
    padding: 15px;
}
.menu:hover{
    background-color: #C5CED4;
    border: transparent;
    border-radius: 5px;
    transition: 0.7s;
    transform: scale(2);
    padding: 15px;
}
.logo{
    width: 40px;
    height: auto;
}
.altlogo img{
  padding: 0;
  width: 90px;
  height: auto;
  margin-right: -88px;
  margin-top: 10px;
  
}
/* A partir de aquí es Index.html */
.contenedor-vid{
  position: relative;
  padding: 0;
  opacity: 70%;
}

.vid-text{
  position: absolute;
  top: 45%;
  left: 58%;
  transform: translate(-70%, -15%);
  color: white;
  text-align: center;
  z-index: 1;
}
.vid-text img{
  width: 100%;
  height: auto;
}
.vid-text p{
  margin-top: 10px;
  font-family: 'big-noodle';
  font-size: 50px;
}
.vid-text button{
  margin-top: 20%;
  background-color: orangered;
  border-color: transparent;
  font-family: 'big-noodle';
  color: white;
  width: 40%;
  height: 70%;
  font-size: 50px;
  font-style: italic;
}
.vid-text button:hover{
  background-color: rgb(192, 52, 2);
}
#s1{
  background-color: #1D2236;
}
.footer{
  color: white;
  background-color: #1D2236;
  text-align: left;
  padding: 0px;
}
/* A partir de aquí es el footer */
.footer table{
  width: 100%;
}
.footer a{
  color: white;
  text-decoration: none;
}
#redes{
  margin-left: 15px;
  list-style-type: none;
  padding: 0;
  margin: 10px 0 10px 10px;
}
.twitter{
  width: 30px;
  height: auto;
}
.youtube{
  width: 35px;
  height: auto;
}
/* A partir de aquí es heroes.html */
.hero{
  background-image: url('gallery.png');
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
}
.heroTitle{
  font-family: 'big-noodle';
  font-style: italic;
}
h1.heroTitle {
  font-size: 80px;
}
label.heroTitle{
  font-size: 40px;
}


.heroes{
  width: 100%;
  color: white;
  height: 100vh;
}
.heroes td{
  text-align: center;
  margin-top: 0;
  background-color: #45a049;
  
}
.heroes th{
  width: 40%;
  height: 50%;
  vertical-align: top;
  padding: 30px;
  background-color: #45a049;
}

#col1{
  height: 50%;
}

/* A partir de aquí es Support.html */
.heroSupport{
  background-image: url("echo.avif");
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
}

form{
  display: block;
  color: white;
  width: 50%;
  margin: 0 50% 0 30%;
  padding: 40px; 
  justify-content: center;
}
form h1{
  font-family: "big-noodle";
  font-style: italic;
  font-size: 80px;
}
input[type=submit] {
  width: 15%;
  background-color: #368700;
  color: white;
  padding: 14px;
  margin: 30px 0px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
input[type=submit]:hover {
  background-color: #45a049;
  box-shadow: 0 10px 15px rgba(52, 17, 151, 0.8);
}
select{
  padding: 10px;
}



