/*FUENTE*/
@font-face {
  font-display: swap;
  font-family: Jersey10;
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/jersey10.woff2') format('woff2');
}

/*DEFINITIONS*/
:root {
    --mate-text: rgb(241, 236, 236);
    --mate-dark: rgb(20, 20, 20);
    --mate-light: rgb(62, 62, 62);
    --mate-red: rgb(243, 37, 52);
    --mate-dark-red: rgb(200, 14, 26);

    --mate-text-light: rgb(20, 20, 20);
    --mate-background-light: rgb(241, 236, 236);
}

/*ESTILOS GENERALES Y BODY*/
body {
    background-image: url(../images/fondo.svg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    font-family: Jersey10;
    margin: 0;

    transition: background-color 0.5s ease, color 0.5s ease;
    background-color: var(--mate-dark);
    color: var(--mate-text)
}
body.light-mode {
    background-color: var(--mate-background-light);
    color: var(--mate-text-light)
}
body.light-mode a {
    color: var(--mate-dark-red);
}

a {
    display: inline-block;
    color: var(--mate-red);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: blueviolet;
    transform: scale(1.2);
}

ul {
    list-style-type: none;
}

/*TEXTO*/
.main_title {
    font-size: 350%;
    text-shadow: 4px 3px 0px var(--mate-dark-red);
    margin: 3vh;
    margin-bottom: 1vh;
    text-align: center;
}

.center {
    display: block;
    min-height: fit-content;
    width: inherit;
    margin: 0;
    padding: 0;
}
.center_title {
    margin: 0;
}
.center_text {
    font-size: 150%;
    margin-inline: 3vw;
}
.center_text p {
    text-align: justify;
}

/*IMAGEN*/
.pfp {
    float: right;
    width: 146px;
    height: 240px;
    margin-inline: 1vw;
    margin-bottom: 1vh;
}

/*HEADER*/
.page_head {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3vh;
    width: inherit;
    border-bottom: 1vh dashed var(--mate-light);
}
.nav_links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 3vw;
    font-size: 175%;
    margin-bottom: 2vh;
    padding-inline: 1vw;
}

/*MAIN*/
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: inherit;
    width: clamp(360px, 70vw, 100%);
    min-height: 100dvh;
    border-inline: 2vw solid var(--mate-light);
    box-sizing: border-box;
    padding: 0, 16px;
}

/*BUTTONS*/
button {
   font-family: Jersey10;
   font-size: 125%;
   color: var(--mate-dark);
   background-color: var(--mate-text);
   border: 3px solid var(--mate-light);

   cursor: pointer;
   transition: all 0.3s ease-in-out;
}
button:hover {
    background-color: blueviolet;
    color: var(--mate-text);
    transform: scale(1.2);
    box-shadow: 0px 2px 3px var(--mate-light);
}
button:active {
    transform: scale(1);
}

select {
    font-family: Jersey10;
    font-size: 125%;
    color: var(--mate-dark);
    background-color: var(--mate-text);
    border: 3px solid var(--mate-light);
    cursor: pointer;
}

/*STATUS*/
#status_message {
    margin: 0;

}
#status_block {
    border: 6px dashed var(--mate-light);
    margin-bottom: 3vh;
    min-height: 146px;
}
#status_block p {
    text-align: justify;
    margin: 1%;
    margin-top: 0;
    padding: 0;
}
