.twoColumn {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.joinLink {
    display: inline-flex;
    width: 200px;
    height: 50px;
    justify-content: center;
    align-items: center;

    font-size: 1.3rem;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;

    background-color: #5865f2;
    color: white;
    padding: 5px 8px;
    border-radius: 5px;

    transition: transform 0.3s ease;
}

.joinLink:hover {
    transform: scale(105%);
    
}

.joinLink span {
    margin-left: 7px;
}

.discordWidget {
    margin-top: 1rem;
    width: 350px;
    height: fit-content;
    aspect-ratio:  350 / 500;
    flex-shrink: 0;
}

.discordWidget iframe {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 834px) {
    .twoColumn {
        flex-direction: column;
        gap: 0;
    }
    .discordWidget {
        width: 100%;
        max-width: 350px;
    }
}