body {
    background-color: rgb(80, 80, 80);
}

h1 {
    background: -webkit-linear-gradient(rgb(0, 183, 255), rgb(0, 255, 0));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-size: 40px;
    font-family: sans-serif;
    /*color: rgb(255, 255, 255);*/
    text-align: center;
    
}

h2 {
    font-size: 25px;
    font-family: sans-serif;
    color: rgb(255, 255, 255);
    text-align: center;
}
  
p {
    font-family: sans-serif;
    font-size: 20px;
    text-align: center;
    color: white;
}

.hr-h1 {
    text-align: center;
    width: 75%;
    height: 5px;
    color: rgb(255, 255, 255);
    background-color: rgb(255, 255, 255);
}

.hr-h2 {
    text-align: center;
    width: 7%;
    height: 3px;
    color: rgb(255, 255, 255);
    background-color: rgb(255, 255, 255);
}

.hr-button {
    text-align: center;
    width: 50%;
    height: 3px;
    color: rgb(255, 255, 255);
    background-color: rgb(255, 255, 255);
}

.hr-button2 {
    text-align: center;
    width: 85%;
    height: 1px;
    color: rgb(255, 255, 255);
    background-color: rgb(255, 255, 255);
}

.button-mail {
    background-color: rgb(0, 158, 24);
    color: white;
    font-family: sans-serif;
    font-size: 7px;
    display: inline-block;
    padding: 12px 24px;
    margin: 0 0 10px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    user-select: none;
    border: 2px;
    border-style: solid;
    border-color: black;
}

.button-mail:hover {
    background-color: white;
    color: rgb(0, 158, 24);
    font-family: sans-serif;
    font-size: 7px;
    display: inline-block;
    padding: 12px 24px;
    margin: 0 0 10px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    user-select: none;
    border: 2px;
    border-style: solid;
    border-color: black;
}

.button-discord {
    background-color: rgb(245, 39, 39);
    color: white;
    font-family: sans-serif;
    font-size: 7px;
    display: inline-block;
    padding: 12px 24px;
    margin: 0 0 10px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    user-select: none;
    border: 2px;
    border-style: solid;
    border-color: black;
}

.button-discord:hover {
    background-color: white;
    color: rgb(245, 39, 39);
    font-family: sans-serif;
    font-size: 7px;
    display: inline-block;
    padding: 12px 24px;
    margin: 0 0 10px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    user-select: none;
    border: 2px;
    border-style: solid;
    border-color: black;
}

.contact-panels {
    text-align: center;
    margin: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.contact-panel1 {
    margin: 10px;
    width: 350px;
    height: 600px;
    background-color: rgb(0, 158, 24);
    border: 3px;
    border-color: black;
    border-style: solid;
}

.contact-panel2 {
    margin: 10px;
    width: 350px;
    height: 600px;
    background-color: rgb(245, 39, 39);
    border: 3px;
    border-color: black;
    border-style: solid;
}

.contact-text {
    text-align: center;
}

.contact-img {
    width: 100px;
    height: 100px;
}

/*
Navigation Bar
*/

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(35, 35, 35);
}
  
li {
    float: left;
}
  
li a {
    font-family: sans-serif;
    display: block;
    color: rgb(255, 255, 255);
    padding: 8px 16px;
    text-decoration: none;
    text-align: center;
}
  

li a:hover {
    background-color: rgb(150, 150, 150);
    color: rgb(35, 35, 35)
}

.active {
    background-color: rgb(181, 181, 181);
    color: rgb(35, 35, 35);
}

.active:hover {
    background-color: rgb(181, 181, 181);
    color: rgb(35, 35, 35);
}
/*
  
li:last-child {
    border-bottom: none;
}*/