.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: rgba(255,255,255, 0.03125);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 20px;
    padding-right: 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    border-radius: calc(infinity * 1px);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.button:hover {
    background-color: rgba(255, 255, 255, 0.0625);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.main-container-divider {
    background-color: rgba(255,255,255, 0.25);
    height: 1px;
    width: 44rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    opacity: 0;

    padding-bottom: 2rem;
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    
    border-radius: 24px;
    
    background-color: rgba(255, 255, 255, 0.03125);
    border: 1px solid rgba(255,255,255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    animation: loadUpwards 0.75s ease-out forwards, fadeIn 2s linear forwards;
}

.main-container-button-container {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
}

.info-text-one {
    margin-bottom: 1rem;
    color: white;
    font-size: 4rem;
    font-weight: 600;
    background-color: transparent;
    border: 0px;
    text-align: center;
}

.info-text-two {
    margin: 0;
    color: white;
    font-size: 2rem;
    font-weight: 400;
    background-color: transparent;
    border: 0px;
    text-align: center;
}

.discord-icon {
    width: auto;
    height: 20px;
    filter: brightness(0) invert(1);
}

.copy-icon {
    width: auto;
    height: 20px;
    filter: brightness(0) invert(1);
}

.in-new-icon {
    width: auto;
    height: 20px;
    filter: brightness(0) invert(1);
}

@keyframes loadOpacityOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes loadUpwards {
    0% { transform: translateY(48px); }
    100% { transform: translateY(0); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}