:root {
    /* Colors */
    --primary-color: rgba(228, 5, 32, 1);;
    --secondary-color: rgb(255, 255, 255);
    /*Fonts*/
    --font-family-Bold: 'Mulish', sans-serif;
    /* Fonts Styles */
    --font-weight-bold: 700;
}

body.backgroundlp {
    margin: 0 !important;
    padding: 0 !important;
    background-image: url('../images/WallpaperInicio.png') !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    height: 100vh !important;
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-redirect{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

a{
    text-decoration: none;
}

header{
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.logo-img {
    height: 113px;
    width: 876px;
}

.description{
    font-family: var(--font-family-Bold);
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    font-size: 2rem;
}

.btn{
    font-family: var(--font-family-Bold);
    font-size: 1rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 10px;
    font-weight: var(--font-weight-bold);
    padding: 1rem;
    text-align: center;
}

.btn:hover{
    background-color: var(--secondary-color);
    border-color: var(--primary-color);
    color: var(--primary-color);
    outline: 2px solid var(--primary-color);
}


.versionamiento {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}
