@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;600&display=swap');

html {
    height: 100%;
    font-family: Raleway;
}

body {
    height: 100%;
    padding: 0;
    margin: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
    display: none;
}

h1, h2, h3 {
    text-align: center;
    margin: 10px;
}

header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 700px;
    flex-direction: column;
    background-color: rgb(226, 226, 226);
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20%;
    flex-direction: column;
    background-color: rgb(36, 36, 36);
    color: white;
}

section {
    display: flex;
    justify-content: space-evenly;
    flex-flow: column wrap;
    padding: 80px;
}

section>* {
    flex: 1 1 80px;
    text-align: center;
}

.custom-shape-divider-bottom-1648799150 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    margin-bottom: -1px;
}

.custom-shape-divider-bottom-1648799150 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 197px;
}

.custom-shape-divider-bottom-1648799150 .shape-fill {
    fill: #FFFFFF;
}

section>div {
    margin-bottom: 70px;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    width: 100%;
}

.fa {
    padding: 20px;
    text-align: center;
    text-decoration: none;
}

.fa-discord {
    color: white;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    width: 10em;
    bottom: 150%;
    left: 50%;
    margin-left: -5em;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.tooltip .tooltiptext {
    opacity: 0;
    transition: opacity 0.5s;
}
  
  .tooltip:hover .tooltiptext {
    opacity: 1;
}

#socials>div {
    margin: 0 4px 0 4px;
}