@font-face {
  font-family: kanit;
  src: url(../font/Kanit.ttf) format('truetype');
  font-display: swap;
}

@font-face {
  font-family: kanitExtra;
  src: url(../font/Kanit-ExtraBold.ttf) format('truetype');
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  cursor: pointer;
}

:root {
  --title: 2.5rem;
  --subtitle: 1.8rem;
  --parrafos: 1rem;
  --footer: .7rem;
  --color1: #231F20;
  --color2: #FEFBFB;
  --color3: #4F4C4D;
  --color4: #FFFFFF;
  --color5: #DCDBDB;
  --color6: #F5821F;
  --color7: #00AEEF;
}

body {
    width: 100dvw;
    height: 100dvh;
    position: relative;
    background: var(--color2);
    overflow: hidden;
}
/* Header Inicio */
header{
    width: 100dvw;
    height: 10dvh;
    margin: 1em 0;
}
header picture{
    width: 90%;
    height: auto;
    margin: auto;
}
header picture a{
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
}
header picture img{
    width: 17em;
    height: auto;
}
/* Header Fin */
/* Footer Inicio */
footer{
    width: 100dvw;
    height: auto;
    position: absolute;
    bottom: 1em;
    background: var(--color1);
    display: none;
}
.copy {
    width: 100%;
    height: auto;
    font-family: kanit;
    font-weight: 400;
    font-size: .8rem;
    color: var(--color2);
}

.content_copy {
    width: 100%;
    height: auto;
    padding: 1em 0;
}
.content_copy > p{
    text-align: center;
}
.content_copy a{
    text-decoration: none;
    font-family: kanit;
    font-weight: 400;
    font-size: .8rem;
    color: var(--color2);
    text-decoration: underline;
    text-align: center;
    display: block;
}
.kad {
    width: 100%;
    height: auto;
    display: flex;
    gap: 1em;
}
.kad p {
    width: 50%;
    font-family: kanit;
    font-weight: 400;
    font-size: .8rem;
    color: var(--color2);
    display: flex;
    justify-content: right;
    align-items: center;
}
.kad a{
    width: 50%;
}
.kad img {
    width: 4em;
    height: auto;
    padding: .5em 0 .2em 0;
}
/* Footer Fin */
@media only screen and (min-width:481px) and (max-width:768px){
    /* Header Inicio */
    /* Header Fin */
    /* Footer Inicio */
    .copy {
        display: flex;
    }
    .kad {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1em;
    }
    /* Footer Fin */
}
@media only screen and (min-width: 769px) and (max-width: 1279px) and (orientation: portrait){
    /* Header Inicio */
    header {
        margin: 3em 0;
    }
    header picture img {
        width: 23em;
    }
    /* Header Fin */
    /* Footer Inicio */
    footer{
        display: initial;
        bottom: 3em;
    }
    .copy {
        display: flex;
    }
    .content_copy {
        width: 70%;
        display: flex;
        justify-content: center;
        gap: 1em;
    }
    .kad {
        width: 30%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1em;
    }
    /* Footer Fin */
}
@media only screen and (min-width: 769px) and (max-width: 1279px) and (orientation: landscape){
    /* Header Inicio */
    header {
        margin: 3em 0;
    }
    header picture img {
        width: 23em;
    }
    /* Header Fin */
    /* Footer Inicio */
    footer{
        display: initial;
        bottom: 3em;
    }
    .copy {
        display: flex;
    }
    .content_copy {
        width: 70%;
        display: flex;
        justify-content: center;
        gap: 1em;
    }
    .kad {
        width: 30%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1em;
    }
    /* Footer Fin */
}
@media only screen and (min-width:1280px){
    /* Header Inicio */
    header {
        margin: 3em 0;
    }
    header picture img {
        width: 23em;
    }
    /* Header Fin */
    /* Footer Inicio */
    footer{
        display: initial;
        bottom: 3em;
    }
    .copy {
        display: flex;
    }
    .content_copy {
        width: 70%;
        display: flex;
        justify-content: center;
        gap: 3em;
    }
    .content_copy a:hover{
        color: var(--color5);
        transition: .3s;
    }
    .kad {
        width: 30%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1em;
    }
    /* Footer Fin */
}