@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,300;1,100;1,300&display=swap');

* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    color: #512161;
}

:root {

    --texto-general: 'Montserrat', sans-serif;
}


a {
    text-decoration: none;
}


/*Iniciamos portada*/

.cover {
    flex-shrink: 0;
    font-family: var(--texto-general);
}


.texto h1 {
    color: #512161;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 0.75rem;
    position: absolute;
    top: 160px;
    left: 35px;

}

.img-cover img {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

}



@media (min-width: 320px) and (max-width: 800px) {

    .texto h1 {

        display: inline-block;
        font-size: 1rem;
        top: 90px;
        left: 20px;
        padding-bottom: 12px;
    }

}