@import url('https://fonts.googleapis.com/css?family=Montserrat');
li {transition: all 300ms; -webkit-transition: all 300ms; -moz-transition: all 300ms; -o-transition: all 300ms;}

:root{
    --background-color: black;
    --nav-color: white;
    --text-color: white;
    font-family: Garamond, serif;
}
*{
    margin: 0;
    padding: 0;
}
html{
    height: 100%;
}
body{
    height: 100%;
    background-image: url("https://cdn.discordapp.com/attachments/787402434590277652/979344484330516550/Screenshot_2022-03-04_190630.png");
    background-color: black;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
nav{
    display: flex;
    justify-content: center;
    border-top: 15px solid transparent;
    background-color: black;
}
nav ul{
    display: flex;
    background-color: transparent;
    padding-bottom: 5px;
}
nav ul li{
    list-style: none;
}
nav ul li:hover{
    border-left: 2px solid #dd7732;
    border-right: 2px solid #dd7732;
    border-radius: 10px;
    padding-top: 6px;
}
nav ul li a{
    text-decoration: none;
    font-size: 21px;
    padding: 10px;
    color: white;
    padding: 25px;
}
nav ul li a:hover{
    color: #dd7732;
}
.center{
    display: flex;
    justify-content: center;
    margin-top: 7%;

}
form{
    height: 700px;
    width: 1500px;
    padding: 40px;
    border-radius: 8px;
    background-color: rgb(41, 41, 41);
    box-shadow: 4px 4px 1px black;

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #dd7732;
}
h1{
    font-size: 50px;
    text-transform: uppercase;
    text-shadow: black 5px 5px 8px;
}
.social{
    display: flex;
    justify-content: center;
}
.social li{
    list-style: none;
} 
.footer {
    display: flex;
    justify-content: center;
    position: relative;
    top: 60px;
    color: white;
}