@font-face {
  font-family: 'Bebas Neue';
  src: url('fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}
body{
    font-family: "Bebas Neue";
    background-image: url(assets/fondo.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}
main{
    display: flex;
    flex: 1;
    padding: 30px;
    padding-left: 50px;
}
img{
    width: 40vh;
    height: auto;
}
footer{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #666666ee;
    text-align: center;
    font-size: 2vw;
    letter-spacing: 3px;
    padding: 5px;
    flex-direction: row;
}
#slogan{
    color: rgb(242, 132, 53);
    margin: 0;
    margin-right: 10px;
}
#proximamente{
    color: rgb(160, 160, 160);
    margin: 0;
}
@media (max-aspect-ratio: 1/1) {
    main{
        padding: 10px;
        justify-content: center;
    }
    img{
        width: 50vw;
        height: auto;
    }
    footer{
        font-size: 1.3vh;
        flex-direction: column;
    }
}
