body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #1F1F1F;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard syntax */
}
img {
    user-drag: none; /* Standard syntax */
    -webkit-user-drag: none; /* Safari */
    -khtml-user-drag: none; /* Konqueror */
    -moz-user-drag: none; /* Firefox */
    -o-user-drag: none; /* Opera */
}

h6 {
    font-size: 23px;
}
h5 {
    font-size: 26px;
}
h4 {
    font-size: 30px;
}
p {
    font-size: 18px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px;
    background-color: #1F1F1F;
    text-align: center;
    border-bottom: solid 1px white;
}
.navbar:hover {
    background-color: #101010;
}

.navbar img {
    width: 60px;
    padding: 1px;
    object-fit: contain;
}

.navbar nav {
    position: absolute;
    bottom: 35px;
    width: 100%;
    right: 30%;
}
.navbar a {
    display: inline-flex;
    position: relative;
    font-size: 20px;
    margin: 0 10px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
}

.navbar a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: gray;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}
.navbar a:hover::after {
    transform: scaleX(1);
}

.navbar .ip {
    background-color: transparent;
    border-radius: 10%;
    border: solid 1px white;
    color: white;
    position: absolute;
    bottom: 30px;
    left: 75%;
    width: 110px;
    padding: 10px;
}
.navbar .ip:hover {
    border: solid 2px white;
    cursor: pointer;
}

@media(max-width: 900px) {
  .navbar nav, .navbar .ip {
    display: none;
  }
}

.welcome {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.welcome h4 {
    color: white;
    text-transform: capitalize;
}
.welcome p {
    margin-top: -30px;
    color: darkgray;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}
.servers {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media(max-width: 545px) {
  .servers {
    display: none;
  }
}
.servers .server {
    margin-left: 30px;
    margin-top: 30px;
    border: solid 1px white;
    border-radius: 10%;
    background-color: transparent;
    width: 200px;
    padding: 10px 0;
}
.welcome .servers h6 {
    color: white;
    margin-top: 20px;
    text-decoration: underline;
}
.welcome .servers p {
    margin-top: -45px;
    width: 80%;
}

.aboutUs {
    width: 100%;
    padding: 30px 0px;
    background-color: #101010;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.aboutUs h4 {
    color: white;
    text-transform: capitalize;
}
.aboutUs p {
    margin-top: -30px;
    color: darkgray;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.divider {
    border: solid 1px lightgray;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

.footer {
    position: inherit;
    bottom: 0;
    width: 90%;
    color: gray;
    margin-left: auto;
    margin-right: auto;
}
.footer .icons {
    margin-left: 8px;
}
.footer img {
    margin-right: 4px;
    position: relative;
    top: 10px;
}

