.comfortaa-<uniquifier> {
  font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter';
    -webkit-tap-highlight-color: #ffffff00
}

body::-webkit-scrollbar {
    width: 0.6rem;
    height: 0.5rem;
}

body::-webkit-scrollbar-thumb {
    border-radius: .5rem;
    background-color: #0004;
    visibility: hidden;
}

body:hover::-webkit-scrollbar-thumb {
    visibility: visible;
}

body {
    overflow-x: hidden;
}

.main-server-home-section-header {
    /* height: 80px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    z-index: 10;
    position: fixed;
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 0 13px 2px #1b2331;
}

.main-server-home-section-header-left {
    display: flex;
    align-items: center;
    /* background: #ffffff; */
    padding: 10px 20px;
    /* border-radius: 18px; */
    /* box-shadow: 0 0 11px 1px #0000002e; */
}

.main-server-home-section-header-left img {
    height: 50px;
    margin: 0 3px 0 0;
}

.main-server-home-section-header-left p {
    margin: 1px 0 0 4px;
    font-family: 'Comfortaa';
    font-size: 36px;
    font-weight: 900;
    color: #202020;
    /* color: #ffffff; */
}

.main-server-home-section-header-right-list,
.main-server-home-section-header-center-list {
    list-style: none;
    display: flex;
    align-items: center;
}

.main-server-home-section-header-right-list li,
.main-server-home-section-header-center-list li {
    margin: 0 8px;
}

.main-server-home-section-header-right-list-element a,
.main-server-home-section-header-center-list-element a {
    color: #202020;
    font-weight: 500;
    text-decoration: none;
    font-size: 17px;
    background: #d6d6d6;
    padding: 12px 24px;
    border-radius: 30px;
    transition: 0.3s;
    box-shadow: 0 0 11px 1px #8f8f8f;
}

.main-server-home-section-header-right-list-element-border,
.main-server-home-section-header-center-list-element-border {
    outline: none;
    border: none;
    background: #F13270;
    padding: 3px;
    border-radius: 100px;
    transition: 0.3s;
    cursor: pointer;
}

.main-server-home-section-header-right-list-element-border a,
.main-server-home-section-header-center-list-element-border a {
    outline: none;
    text-decoration: none;
    border: 3px solid #ffffff;
    font-size: 16px;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.3s;
    background: #F13270;
    display: flex;
}

.main-server-home-section-header-right-list-element:hover a,
.main-server-home-section-header-center-list-element:hover a {
    background: #ffffff;
}

.main-server-home-section-header-right-list-element-border:hover,
.main-server-home-section-header-right-list-element-border:hover a,
.main-server-home-section-header-center-list-element-border:hover,
.main-server-home-section-header-center-list-element-border:hover a {
    background: #ff82aa;
}

.main-header-dark-text .main-server-home-section-header-left p {
    color: #202020;
}

@media screen and (max-width: 1300px) {
    .main-server-home-section-header {
        flex-direction: column;
    }

    .main-server-home-section-header-center {
        margin: 35px 0;
    }
}

@media screen and (max-width: 800px) {
    .main-server-home-section-header-center-list {
        display: grid;
        grid-template-columns: auto auto;
        grid-gap: 2rem;
        justify-items: center;
    }
}

@media screen and (max-width: 600px) {
    .main-server-home-section-header-center-list {
        display: grid;
        grid-template-columns: auto;
        grid-gap: 2rem;
        justify-items: center;
    }

    .main-server-home-section-header-center,
    .main-server-home-section-header-right {
        display: none;
    }

    .main-server-home-section-header {
        position: absolute;
    }
}