/* Fuentes customizadas y el body*/
@font-face {
    font-family: 'big-noodle';
    src: url(fuentes/big_noodle_titling.ttf);
}
body{
  margin: 0;
  padding:0;
  font-family: Arial, Helvetica, sans-serif;
  }
/* A partir de aquí es Support.html */
.heroSupport{
  background-image: url("imagenes/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(98, 104, 112, 0.8);
}
select{
  padding: 10px;
  border: transparent;
}


/* A partir de aquí es el header, barra para navegar */

.header{
    background-color: #D8E3E8;
    padding: 15px 50px;
}
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 el footer */
.footer{
  color: white;
  background-color: #1D2236;
  text-align: left;
  padding: 0px;
}
.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;
}
