@import "reset.css";

body{
    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;
    
}
.main{
    width:100%;
    grid-area:main;
    border:15px solid black;
    background-color: black;
    opacity:0.9;
    margin-bottom:15px;
}

.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{
    color:white;
    text-decoration:none;
    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;
}

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{
    width:100%;
    vertical-align:top;
}

h1{
    color:white;
    text-decoration:none;
    font-size:xx-large;
    font-family:jaro;
}

ul{
    color:white;
    font-family:varela;
    line-height:24px;
    margin-left:25px;
}

li{
    font-size:large;
    color:white;
    font-family:varela;
    line-height:40px;
}

#secret{
    color:rgb(15, 14, 13)
}

table{
    background-color:rgb(63, 63, 63);
    width:100%;
}

th{
    padding:15px;
    font-size:x-large;
    color:white;
    font-family:Black Ops One;
    line-height:24px;
    border:1px solid black;
    width:33.3%;
}


td{
    font-size:large;
    color:white;
    font-family:varela;
    line-height:30px;
    border:1px solid black;
}

@media screen and (max-width:600px){
    p{
        font-size:small;
    }
    h2{
        font-size: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;
    }

    .text{
        width:100%
    }

    a:hover{
        font-size:large;
        color:orange;
        text-decoration:underline;
    }

    #logo{
        display:block;
        width:40px;
        height:40px;
    }

    td{
        font-size:small;
    }
}



