/* Reset básico */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Eliminar bordes de imágenes */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Heredar fuentes */
body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

/* Reset de listas */
ul,
ol {
  list-style: none;
}

/* Reset de enlaces */
a {
  text-decoration: none;
  color: inherit;
}

/* Reset de botones e inputs */
button,
input,
textarea,
select {
  font: inherit;
}

.oswald-300, * {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight:300;
  font-style: normal;
}

body{
    background-color: black;
}
.h-100vh{
    height: 100svh;;
}
.w-100vw{
    width: 100svw;
}

.flex-column{
    display: flex;
    flex-direction: column;
}

.d-flex {
    display: flex;
}
.justify-content-center {
    justify-content: center;
}
.align-items-center{
    align-items: center;
}

.b-red{ 
}

.solo-gon{
    width:100%;
   
    object-fit: contain;
    object-position: center;
    height: auto;  
     max-height: 50svh;
     max-width: 70svw;
    @media screen and (min-height:600px) and (min-width:480px) {

            min-height: 500px;
            max-height: 50svh;
            max-width: unset;

    }   @media screen and (min-height:900px)  {

        min-height: 700px;


    }
}

.cont-text{
    position: relative;

    width: 100%;
    color: white;
    text-transform: uppercase;
        @media screen and (min-width:480px) {

         
           position: absolute;
               top:50%;
    left: 50%;
    transform: translate(-50%, -10%);
        
    }
}

.tit-desta{
    font-size: clamp(1.25rem, 0.6442rem + 2.6923vw, 3rem);
}
.subtit{
  font-size: clamp(1.375rem, 0.8125rem + 2.5vw, 3rem);
}

.menu-rss{
   
    --gap:15px;
    gap:var(--gap);
   
    margin-top: 20px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
text-align: center;



        & li{
            width: calc(50% - var(--gap));

           

        }

    @media screen and (min-width:480px) {

         gap:calc(var(--gap) * 2);

         
                flex-direction: row;
               
              & li{
                width: unset;
              }
          
        
    }

    & a{

        font-size: clamp(1.125rem, 1.0385rem + 0.3846vw, 1.375rem);
        &:hover{
            text-decoration: underline;
        }
    }
}
