@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Silkscreen:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Concert+One&display=swap');
@media screen and (min-width: 720px) {

html, body {
    background-image: url(./images/imagenFondoRandom.jpg);
    background-size: cover;
    width: 100vw;
    height: 100vh;
}

.button{
    border: yellow solid 3px;
    border-radius: 7px;
    text-decoration: none;
    position: fixed;
    color: yellow;
    font-family: "Silkscreen", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    text-align: center;
    padding: 15px;
    cursor: pointer;
}

header {
    width: 20vw;
    height: 25vh;
    position: fixed;
    left: 40vw;
    top: 0vh;
    border: yellow solid 4px;
    border-radius: 4px;
}

.images01 {
    width: 20vw;
    height: 25vh;
}

main {
    width:100vw;
    height: 90vh;
    position: fixed;
    left: 0vw;
    top: 10vh;
}

section {
    width: 32vw;
    height: 64.5vh;
    position: fixed;
    left: 5vw;
    top: 30vh;
    color: yellow;
    font-family: "Concert One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    text-align: justify;
    border: yellow solid 4px;
    border-radius: 2px;
    cursor: pointer;

}

.section:hover {
    background-image: url(./images/imagen2Random.png);
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 0px;
}

article {
    width: 32vw;
    height: 64.5vh;
    position: fixed;
    left: 63vw;
    top: 30vh;
    color: yellow;
    font-family: "Concert One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    text-align: justify;
    border: yellow solid 4px;
    border-radius: 2px;
    cursor: pointer;
    
}

.article:hover {
    background-image: url(./images/imagen3Random.png);
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 0px;
}
}

@media screen and (max-width: 720px) {
    html, body {
        background-image: url(./images/imagenFondoRandom.jpg);
        width: 100vw;
        height: 100vh;
    }
    
    .button{
        border: yellow solid 3px;
        border-radius: 7px;
        text-decoration: none;
        position: fixed;
        color: yellow;
        font-family: "Silkscreen", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 18px;
        text-align: center;
        padding: 15px;
        cursor: pointer;
    }
    
    header {
        width: 50vw;
        height: 25vh;
        position: fixed;
        left: 40vw;
        top: 0vh;
        border: yellow solid 4px;
        border-radius: 4px;
    }
    
    .images01 {
        width: 50vw;
        height: 25vh;
    }
    
    main {
        width:100vw;
        height: 90vh;
        position: fixed;
        left: 0vw;
        top: 10vh;
    }
    
    section {
        width: 37vw;
        height: 50vh;
        position: fixed;
        left: 5vw;
        top: 30vh;
        color: yellow;
        font-family: "Concert One", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 12px;
        text-align: justify;
        border: yellow solid 4px;
        border-radius: 2px;
        cursor: pointer;
    }
    
    .section:hover {
        background-image: url(./images/imagen2Random.png);
        background-size: cover;
        background-repeat: no-repeat;
        font-size: 0px;
    }
    
    article {
        width: 37vw;
        height: 50vh;
        position: fixed;
        left: 58vw;
        top: 30vh;
        color: yellow;
        font-family: "Concert One", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size:12px;
        text-align: justify;
        border: yellow solid 4px;
        border-radius: 2px;
        cursor: pointer;
    }
    
    .article:hover {
        background-image: url(./images/imagen3Random.png);
        background-size: cover;
        background-repeat: no-repeat;
        font-size: 0px;
    }
 }
