html {
    box-sizing: border-box;
}
*,
*:before,
*:after {
    box-sizing: inherit;
}

html,
body {
    font-family: sans-serif;
    width: 100%;
    height: 100%;
    background-color: #060b30;
    margin: 0;
}

body {
    padding: 0 1rem;
}

main {
    max-width: 1200px;
    margin: auto;
    width: 100%;
}

.logo {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0.5rem;
    height: 300px;
}

.meetup-logo {
    width: 100px;
}

.discord-logo {
    width: 80px;
}

.discord-logo + div {
    width: 45px;
}

ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
}
li {
    margin: 0;
    display: flex;
    justify-content: center;
    border: 1px solid white;
    height: 125px;
    border-radius: 125px;
    padding: 1rem;
    a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: white;
        flex-grow: 1;
    }
}

li:hover {
    background: rgba(255, 255, 255, 0.3);
}

li {
    margin: 0;
    display: flex;
    justify-content: center;
    border: 1px solid #230202;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
        rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    border-radius: 125px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    font-size: clamp(22px, 6vw, 32px);
}
