﻿
@font-face {
    font-family: 'Fuente';
    src: url('../Fonts/AlpinaSans-Semibold_2020-03-23.otf')format('opentype');
}

:root {
    --primary-color: rgba(70, 21, 108, 1);
    --secondary-color: rgba(255, 255, 221, 1);
    --terteary-color: black;
    --quaternary-color: rgba(195, 132, 244, 1);
    --quinteary-color: rgba(217, 210, 223, 1);
    --font-family-alpinasemibold: 'Fuente',alpinasemibold;
    --font-size-bigletter: 22px;
    --font-size-lettersmall: 10px;
}

body {
    background-image: url('../images/WallpaperInicio.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 60px;
    min-height: 100vh;
    box-sizing: border-box;
    font-family: var(--font-family-alpinasemibold);
}

.img-fluid-women {
    position: fixed;
    bottom: 0%;
    height: auto;
    left: 5%;
    max-width: 450px;
    min-width: 400px;
    width: 30%;
}

.btn-custom-reset {
    font-size: 22px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 15px;
    font-family: var(--font-family-alpinasemibold);
    font-weight: bold;
}

.section-instruction {
    font-family: var(--font-family-alpinasemibold);
    color: var(--primary-color);
    text-align: left;
    font-weight:50;
}
/* Estilos cuando el bot�n reset e itsm perciben el cursor */
.btn-custom-reset:hover {
    font-size: 1rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
    outline-color: var(--quaternary-color);
}

@media (max-width: 800px) {

    .img-logo {
        justify-content: center;
        margin-top: 50px;
        width: 200px;
        height: auto;
    }
    .img-fluid-women {
        position: fixed;
        bottom: 0%;
        height: auto;
        left: 5%;
        max-width: 300px;
        min-width: 100px;
        width: 30%;
    }

}