
body{
    background: rgb(244, 202, 125);
}

h1 {
    padding:5px;
}
.parent {
    display: flex;
    flex-direction: column; 
    width: 60%;
    justify-content: center;
    margin: 0 auto;
    background-color: rgb(180, 220, 255);
    border: 2px solid blue;
}
.head {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.head h1 {
    align-self: center;
}
.tabs {
    width: 99%;
    align-self: center;
    display: flex;
    flex-direction: row;
    margin-bottom: 5px;
}
.tabs div {
    margin: 1px;
    padding: 4px;
    width: 20%;
    text-align: center;
    border: 2px solid blue;
    background-color: rgb(180, 220, 255);
}
.body {
    display: flex;
    flex-direction: row;
    height: 60%;
    margin-bottom: 12px;
}
.body div {
    border: 2px solid blue;
    background-color: rgb(180, 220, 255);
    margin: 4px;
    width: 100%;
    height: 300px;
    justify-content: center;
    padding: 2px;
}
.body div header {
    align-self: center;
    font-size: 25px;
    font-weight: bold;
    text-decoration: underline;
    text-align: center;
}
.body div p {
    align-self: center;
    font-size: 15px;
}
p {
    text-align: center;
}
.knees {
    margin: 5px;
    align-self: center;
}
.knees p{
    font-size: 15px;
    background-color: transparent;
}
.knees h1 {
    color: blue;
    font-size: 60px;
    margin-top: 0px; 
    font-size: 4em;
    background: linear-gradient(to right, #ef5350, #f48fb1, #7e57c2, #2196f3, #26c6da, #43a047, #eeff41, #f9a825, #ff5722);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    container-name: server;

}
.footer {
    text-align: center;
    border-top: 2px solid blue;
    padding: 3px;
    margin-top: 5px
}
p {
    font-size: 12px
}
.rules {
     justify-content: center;
}
#whitelist {
    background-color: #faa48a;
}
.bulletin {
    overflow-y: scroll;
}
.mobile {
  display: none;
}

@media only screen and (max-width: 768px) {
  div {
    display: block;
  }
}