@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Silkscreen:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oleo+Script:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Concert+One&display=swap');
@media screen and (min-width: 720px) {

html, body{
    background-color: lightyellow;
    width: 100vw;
    height: 100vh;
}

.button{
    background-color: lightyellow;
    border: rgb(131, 131, 15) solid 3px;
    border-radius: 7px;
    text-decoration: none;
    position: fixed;
    color: rgb(131, 131, 15);
    font-family: "Silkscreen", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    text-align: center;
    padding: 15px;
    cursor: pointer;
}

.button:hover {
    background-color: rgb(131, 131, 15);
    color: white;
}

header {
    background-color: lightyellow;
    width: 90vw;
    height: 10vh;
    font-family: "Oleo Script", system-ui;
    font-weight: 700;
    font-style: normal;
    font-size: 60px;
    color: rgb(131, 131, 15);
    text-align: center;
    text-decoration: underline;
    position: fixed;
    left: 10vw;
    top: 0vh;
}

main {
    background-color: rgb(233, 233, 59);
    width: 60vw;
    height: 68vh;
    font-family: "Concert One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 21px;
    text-align: justify;
    border: rgb(131, 131, 15) solid 5px;
    border-radius: 5px;
    color: rgb(58, 58, 9) ;
    position: fixed;
    left: 0vw;
    top: 12vh;
    padding: 10px;
}

section {
    background-color: rgb(192, 240, 224);
    width: 35vw;
    height: 35vh;
    border: rgb(131, 131, 15) solid 5px;
    border-radius: 5px;
    position: fixed;
    left: 62vw;
    top: 12vh;
}

.images01 {
    width: 35vw;
    height: 35vh;
}

article {
    background-color: antiquewhite;
    width: 35vw;
    height: 34vh;
    border:rgb(131, 131, 15) solid 5px ; 
    border-radius: 5px;
    position: fixed;
    left: 62vw;
    top: 48vh;
}

iframe {
    width: 35.1vw;
    height: 17vw;
}

footer {
    background-color: rgb(131, 131, 15);
    width: 100vw;
    height: 10vh;
    position: fixed;
    left: 0vw;
    top: 85vh;
    color: yellow;
    font-family: "Oleo Script", system-ui;
    font-weight: 700;
    font-style: normal;
    text-align: center;   
    font-size: 30px; 
}
}

@media screen and (max-width: 720px) { 
    html, body{
        background-color: lightyellow;
        width: 100vw;
        height: 100vh;
    }
    
    .button{
        background-color: lightyellow;
        border: rgb(131, 131, 15) solid 3px;
        border-radius: 7px;
        text-decoration: none;
        position: fixed;
        color: rgb(131, 131, 15);
        font-family: "Silkscreen", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 18px;
        text-align: center;
        padding: 15px;
        cursor: pointer;
    }
    
    .button:hover {
        background-color: rgb(131, 131, 15);
        color: white;
    }
    
    header {
        background-color: lightyellow;
        width: 30vw;
        height: 10vh;
        font-family: "Oleo Script", system-ui;
        font-weight: 700;
        font-style: normal;
        font-size: 30px;
        color: rgb(131, 131, 15);
        text-align: center;
        text-decoration: underline;
        position: fixed;
        left: 50vw;
        top: 0vh;
    }
    
    main {
        background-color: rgb(233, 233, 59);
        width: 90vw;
        height: 55vh;
        font-family: "Concert One", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 12px;
        text-align: justify;
        border: rgb(131, 131, 15) solid 5px;
        border-radius: 5px;
        color: rgb(58, 58, 9) ;
        position: fixed;
        left: 0vw;
        top: 15vh;
        padding: 10px;
    }
    
    section {
        background-color: rgb(192, 240, 224);
        width: 50vw;
        height: 40vh;
        border: rgb(131, 131, 15) solid 5px;
        border-radius: 5px;
        position: fixed;
        left: 0vw;
        top: 75vh;
    }
    
    .images01 {
        width: 50vw;
        height: 40vh;
    }
    
    article {
        background-color: antiquewhite;
        width: 45vw;
        height: 30vh;
        border:rgb(131, 131, 15) solid 5px ; 
        border-radius: 5px;
        position: fixed;
        left: 50vw;
        top: 75vh;
    }
    
    iframe {
        width: 45vw;
        height: 35vw;
    }
    
footer {
    width: 0vw;
    height: 0vh;
    font-size: 0px;
}
}