header{
    text-align:center;
}

html{
    margin: auto;
}
header h1{
    font-family:"RocknRoll One";
    color:orange;
    -webkit-text-stroke-width: 0.1vw;
    -webkit-text-stroke-color: black;
}
header h1{
    margin: 0px;
    font-size: 4vw;
    padding-bottom: 0px;
}
header h2{
    margin: 0px;
    font-size: 5vw;;
    padding-top: 0px;
    font-family:"RocknRoll One";
    color:rgb(166, 151, 9);
    text-decoration-line: underline;
}
nav ul, footer ul{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
}
nav ul li, footer ul li{
    font-size: 2vw;
    border-right: 0.4vw solid black;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    padding-right: 2%;
    padding-left: 2%;
}
nav ul, footer ul{
    border-top: 0.5vw solid orange;
    border-bottom: 0.5vw solid orange;
    padding:0.5% 0px;
}
.Home{
    color: black;
    text-decoration-line: none;
}
.SNS{
    color: green;
}
.SNS:hover{
    color:hsl(120, 100%, 25%,0.5);
}
.SNS:active{
    color: coral;
}
.Information{
    color: blue;
}
.Information:hover{
    color: hsl(240, 100%, 50%, 0.5);
}
.Information:active{
    color: coral;
}
.Profile{
    color: red;
}
.Profile:hover{
    color:hsl(0, 100%, 50%,0.5);
}
.Profile:active{
    color: coral;
}
nav ul li a:hover, footer ul li a:hover{
    color: hsl(0, 0%, 0%,0.5);
}
nav ul li a:active, footer ul li a:active{
    color: coral;
}
.Homepage{
    border-right: none;
}
html{
    background-image:url(../photos/shuriken-2\ \(3\).png);
    background-size: cover;
    background-position: center;
    background-color: rgba(255, 255, 255,0.85);
    background-blend-mode: overlay;
}
form{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin:0px 5%;
}
label{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2vw;
    margin-bottom: 0.5vw;
}
input{
    height: 3vw;
    font-size: 2vw;
    margin-bottom: 2vw;
    background-color:cornsilk;
    border-radius: 1.5vw;;
    border: 0.2vw solid black;
}
textarea{
    margin-bottom: 2vw;
    font-size: 2vw;
    background-color: cornsilk;
    border:0.2vw solid black;
    border-radius: 1.5vw;
}
.Required{
    color: brown;
    font-size: 1vw;
}
input[type="submit"]{
    background-color: chartreuse;
    font-size: 3vw;
    width: 33%;
    height: 4vw;
    font-weight: bold;
    align-self: center;
}
input[type="submit"]:hover{
    box-shadow: 0.3vw 0.3vw;
}
input[type="reset"]{
    background-color: rgb(211, 152, 248);
    font-size: 2vw;
    width: 33%;
    height: 3vw;
    align-self: center;
    font-weight: bold;
}
h3{
    text-align: center;
    font-size: 5vw;
    width: 100%;
    border-bottom: 0.1vw solid black;
    font-family: "Barrio";
    color: chocolate;
    -webkit-text-stroke-color: black;
    -webkit-text-stroke-width: 0.05vw;
    margin-bottom: 3vw;
}
h4{
    text-align: center;
    font-size: 3.5vw;
    font-family:"Sour Gummy" ;
    text-decoration-line: underline;
    color: rgb(93, 4, 4);
    margin: 0px;
}
p{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 2vw;
    text-align: center;
    color: rgb(86, 21, 21);
    margin:0.5vw 0px 6vw;
}
@media screen and (max-width:800px) {
    header h1{
        font-size: 6vw;
    }
    header h2{
        font-size: 8vw;
    }
    nav ul, footer ul{
        grid-template-rows: repeat(4, 1fr);
        grid-template-columns: 1fr;
        border: none;
        border-top: 0.9vw solid orange;
        padding: 0px;
    }
    nav ul li, footer ul li{
        border-right: none;
        border-bottom: 0.9vw solid orange;
        font-size: 5vw;
        padding: 1vw;
    }
    label{
        font-size: 5vw;
        margin-bottom: 1vw;
    }
    input{
        height: 6vw;
        font-size: 5vw;
        margin-bottom: 5vw;
        border-radius: 3vw;;
        border: 0.4vw solid black;
    }
    textarea{
        margin-bottom: 5vw;
        font-size: 5vw;
        border:0.4vw solid black;
        border-radius: 3vw;
    }
    .Required{
        font-size: 3vw;
    }
    input[type="submit"]{
        font-size: 6vw;
        width: 50%;
        height: 8vw;
    }
    input[type="submit"]:hover{
        box-shadow: 0.5vw 0.5vw;
    }
    input[type="reset"]{
        font-size: 5vw;
        width: 50%;
        height: 6vw;
    }
    h3{
        font-size: 8vw;
        border-bottom: 0.2vw solid black;
        -webkit-text-stroke-width: 0.1vw;
        margin-bottom: 6vw;
    }
    h4{
        font-size: 7vw;
    }
    p{
        font-size: 4vw;
        margin:1vw 0px 12vw;
    }
}