* {
    font-family: 'Satoshi-Regular';
}

html {
    height: 100%;
}

body {
    padding: 0;
    margin: 0;
    background-color: rgb(13, 13, 13);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.main-body-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    gap: 50px;
    padding: 100px 50px;
    box-sizing: border-box;
    text-align: center;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    border: 2px solid white;
    background-color: white;
    color: black;
    border-radius: 100%;
    aspect-ratio: 1;
    padding: 25px;
}

.logo-wrapper span {
    font-size: 48px;
    font-family: 'Satoshi-Bold';
}

.logo-wrapper label {
    font-size: 38px;
}

.who-we-are {
    text-align: center;
    max-width: 650px;
    font-size: 18px;
}

.disclaimer {
    max-width: 650px;
}

.social-media {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.social-media a {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: white;
    font-size: 18px;
    gap: 10px;
}