body {
    background-color: rgb(0, 23, 46);
    font-family: Poppins;
}
header {
    height: 100px;
}
header a {
    display: flex;
    text-decoration: none;
    color: #29a6d8;
    font-size: 10px;
    float: left;
}
header a img {
    height: 60px;
}
header select {
    float: right;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 20px;
    padding: 5px 20px;
    margin: 10px;
}
header select option {
    background-color: rgb(0, 23, 46);
}
.main_text {
    text-align: center;
    color: white;
}
#main_a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.btn_a {
    text-decoration: none;
    color: white;
    padding: 15px 50px 15px 50px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    margin: 5px;
}
#invite_a {
    transition: 0.3s;
    background-color: #29a6d8;
    border: 4px solid #29a6d8;
}
#invite_a:hover {
    transition: 0.3s;
    background-color: transparent;
}
#support_a {
    transition: 0.3s;
    background-color: rgb(0, 41, 81);
    border: 4px solid rgb(0, 41, 81);
}
#support_a:hover {
    transition: 0.3s;
    background-color: transparent;
}
#other_a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#commands_a {
    transition: 0.3s;
    border: 4px solid rgb(0, 78, 156);
}
#commands_a:hover {
    transition: 0.3s;
    background-color: rgb(0, 78, 156);
}
#features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.feature {
    transition: 0.3s;
    width: 300px;
    border: 4px solid #29a6d8;
    border-radius: 20px;
    overflow-wrap: break-word;
    padding: 20px;
}
.feature:hover {
    transition: 0.3s;
    background-color: rgb(0, 41, 81);
}
.feature h2 {
    text-align: center;
    color: #29a6d8;
    margin: 0;
}
.feature p {
    color: white;
}
#statistics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
    margin: 80px;
}
#statistics div {
    font-size: 20px;
}
#statistics div h1 {
    color: #29a6d8;
    margin: 0;
}
#statistics div p {
    font-weight: bold;
    color: white;
    margin: 0;
}


#commands {
    float: left;
}
#commands p {
    color: #29a6d8;
    font-size: 25px;
    margin: 0;
    text-align: left;
}
#commands table {
    border-collapse: collapse;
}
#commands table tr th {
    color: #29a6d8;
    text-align: left;
    font-weight: normal;
}
#commands table tr td {
    color:rgb(143, 143, 163);
    font-size: 13px;
    border-bottom: 1px solid white;
    padding: 10px;
}