@import "reset.css";

body{
    display:grid;
    grid-template-areas:
    'head head'
    'text form'
    'foot foot';
    width:75%;
    margin-left:auto;
    margin-right:auto;
    margin-top:50px;
    margin-bottom:50px;
    background-color:rgb(184, 115, 13)
    
}

.head{
    grid-area:head;
    border:15px solid black;
    background-color: black;
    opacity:0.9;
    margin-top: 15px;
    margin-bottom:15px;
}

main{
    display:flex;
    justify-content: space-around;

}

.text{
    grid-area:text;
    width:50%;
    background-color:rgb(63, 63, 63);
    opacity:0.9;
    padding:15px;
    margin-top: 15px;
    margin-bottom:15px;
}

.form{
    grid-area:form;
    width:50%;
    background-color: black;
    opacity:0.9;
    padding:15px;
    margin-top: 15px;
    margin-bottom:15px;
    text-align:left;
}

.foot{
    grid-area:foot;
    border:15px solid black;
    background-color: black;
    opacity:0.8;
    margin-top: 15px;
    margin-bottom:15px;
}

nav{
display:flex;
    justify-content: space-around;
}

#logo{
    height: 50px;
    width:50px;
}

a{
    text-decoration:none;
    color:white;
    font-size:xx-large;
    font-family:jaro;
}

a:hover{
    color:orange;
    font-size:xx-large;
    text-decoration:underline;
}

.jaro{
  font-family: "Jaro", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.link{
    margin-top:10px;
}

h2{
    color:white;
    font-size: x-large;
    font-family:Black Ops One;
    text-align:center;
    margin-top:25px;
}

p{
    font-size:large;
    color:white;
    font-family:varela;
    line-height:24px;
}

.black-ops-one-regular {
    font-family: "Black Ops One", system-ui;
    font-weight: 400;
    font-style: normal;
  }

.varela-regular {
    font-family: "Varela", sans-serif;
    font-weight: 400;
    font-style: normal;
}

img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width:100%;
}

h1{
    color:white;
    text-decoration:none;
    font-size:xx-large;
    font-family:jaro;
}

iframe{
    margin-top:25px;
    margin-bottom:25px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width:100%;
}

label{
    font-size: x-large;
    color:white;
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-family:"Black Ops One";
    text-align:left;
}

.normal{
    font-size: x-large;
    border: 5px solid black;
    padding: 15px;
    margin-top:5px;
    margin-bottom:5px;
    font-family: "Jaro";
    background-color:rgb(63, 63, 63);
    display:flex;
    margin-left:auto;
    margin-right:auto;
    height:15px;
    text-align:left;
    width:75%;
}

.finish{
    border-radius:15px;
    font-size: x-large;
    border: 5px solid black;
    padding: 15px;
    margin-top:10px;
    margin-bottom:10px;
    font-family: "Jaro";
    background-color:orangered;
    display:flex;
    margin-left:auto;
    margin-right:auto;
    width:100%;
}

form{
    padding-left:120px;
    padding-right:120px;
}

@media screen and (max-width:600px){
    img{
        display:none;
    }
    p{
        font-size:small;
    }
    h2{
        font-size:x-large;
    }
    a{
        font-size:large;
    }
    body{
        width:95%;
        margin-top:25px;
        margin-bottom:25px;
        display:grid;
        grid-template-areas:
        'head head'
        'text text'
        'image image'
        'foot foot';
    }
    h1{
        font-size:x-small;
    }

    .form{
        width:100%
    }

    .text{
        display:none;
    }

    a:hover{
        font-size:large;
        color:orange;
        text-decoration:underline;
    }

    #logo{
        display:block;
        width:40px;
        height:40px;
    }
    label{
        font-size:large;
    }
}





