body {
    margin:0px;
    padding-bottom: 1px;
}
.nav {
    display: flex;
    justify-content: center; 
    gap: 100px;
    background: #242424;
    background: linear-gradient(0deg, #8d1638 0%, 	#000000 100%);
    padding: 15px;
    border-style: solid;
    border-right: 0;
    border-left: 0;
 
 }
 
.nav a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 18px;
    transition: 0.15s;
    font-family: "Google Sans Code", monospace;;
 }
 
.nav a:hover {
    text-decoration: underline;
    font-size: 25px;
    color: cornflowerblue;
 }

.logo {
    max-width: 90px;
    margin-top: -60px;
    margin-left: 20px;
    position:relative;
    z-index: 10;
    border-radius: 100%;
}

h1 {
    text-align: center;
    position:relative;
    bottom:55px;
    font-family: sans-serif;
}

.btn {
    display: inline-block;
    font-family: Bahnschrift;
    padding: 10px 15px;
    background: linear-gradient(0deg, #a0304f 0%, #ba4063 100%);
    color: rgb(0, 0, 0);
    outline: 1px solid black;
    text-decoration: none;
    border-radius: 5px;
}
.btn:hover {
    background: linear-gradient( #7b0323 100%);
}
