@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 {
    width: 100vw;
    height: 100vh;
    font-size: 15px;
    background-color: rgb(192, 240, 224);
}

header {
    background-color: rgb(192, 240, 224);
    width: 100vw;
    height: 10vh;
    font-family: "Silkscreen", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    color: rgb(31, 31, 90);
    text-align: center;
    text-decoration: underline;
    position: fixed;
    left: 0vw;
    top: 0vh;
}

nav {
    background-color: rgb(192, 240, 224);
    width: 100vw;
    height: 5vh;
    font-family: cursive;
    font-size: 25px;
    position: fixed;
    left: 0vw;
    top: 15vh;
    display: flex;
    align-items: center;
    justify-content: space-around    
}

.button {
    border: blue solid 3px;
    border-radius: 3px;
    text-decoration: none;
    color: blue;
    font-family: "Silkscreen", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: lightblue;
    cursor: pointer;
}

.button:hover {
    background-color: blue;
    color: white;
}

main {
    background-color: rgb(192, 240, 224);
    width: 70vw;
    height: 60vh;
    position: fixed;
    left: 73vw;
    top: 25vh;    
}

section {
    background-color: rgb(192, 240, 224);
    width: 70vw;
    height: 58vh;
    position: fixed;
    left: 0vw;
    top: 25vh;
    color: rgb(30, 30, 88);
    font-size: 24px;
    font-family: "Concert One", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: justify;
    border: blue solid 3px;
    border-radius: 3px;
    background-color: lightblue;
    padding: 10px;
}

.images01 {
    width: 300px;
    height: 390px;
    border: blue solid 3px;
    border-radius: 3px;
}

footer {
    background-color: rgb(151, 241, 229);
    width: 100vw;
    height: 10vh;
    position: fixed;
    left: 0vw;
    top: 87vh;
    color: blue;
    font-family: "Concert One", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;   
    font-size: 30px;
}
}

@media screen and (max-width: 720px) { 
    html, body {
        width: 100vw;
        height: 150vh;
        font-size: 5px;
        background-color: rgb(192, 240, 224);
    }
    
    header {
        background-color: rgb(192, 240, 224);
        width: 100vw;
        height: 10vh;
        font-family: "Silkscreen", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-style: normal;
        font-variation-settings: "wdth" 100;
        font-size: 28px;
        color: rgb(31, 31, 90);
        text-align: center;
        text-decoration: underline;
        position: fixed;
        left: 0vw;
        top: 0vh;
    }
    
    nav {
        background-color: rgb(192, 240, 224);
        width: 100vw;
        height: 5vh;
        font-family: cursive;
        font-size: 12px;
        position: fixed;
        left: 0vw;
        top: 15vh;
        display: flex;
        align-items: center;
        justify-content: space-around    
    }
    
    .button {
        border: blue solid 3px;
        border-radius: 3px;
        text-decoration: none;
        color: blue;
        font-family: "Silkscreen", sans-serif;
        font-weight: 400;
        font-style: normal;
        background-color: lightblue;
        cursor: pointer;
    }
    
    .button:hover {
        background-color: blue;
        color: white;
    }
    
    main {
        background-color: rgb(192, 240, 224);
        width: 70vw;
        height: 80vh;
        position: fixed;
        left: 73vw;
        top: 25vh;    
    }

    .images01 {
        width: 0px;
        height: 0px;
    }
    
    section {
        background-image: url(images/foto1Presentación.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        width: 90vw;
        height: 75vh;
        position: fixed;
        left: 0vw;
        top: 20vh;
        color: rgb(0, 0, 0);
        font-size: 16px;
        font-family: "Concert One", sans-serif;
        font-weight: 400;
        font-style: normal;
        text-align: justify;
        border: blue solid 3px;
        border-radius: 3px;
        background-color: lightblue;
        padding: 10px;
    }
    

    footer {
        background-color: rgb(151, 241, 229);
        width: 100vw;
        height: 10vh;
        position: fixed;
        left: 0vw;
        top: 120vh;
        color: blue;
        font-family: unset;
        text-align: center;   
        font-size: 24px;
    }

}
