#home {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
    height: auto;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    min-height: 100%;
}

.content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

.join-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.join-box {
    display: flex;
    width: 200px;
    height: 250px;
    border-radius: 22px;
    border: solid var(--shade-3) 1px;
    background-color: var(--shade-5);
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 22px 12px 12px;
}

.text-box {
    display: none;
    width: 450px;
    height: 250px;
    border-radius: 22px;
    border: solid var(--shade-3) 1px;
    background-color: var(--shade-5);
    padding: 12px;
    box-sizing: border-box;
    text-align: center;
}

.button-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 670px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .button-wrapper {
        transform: translateX(40px);
    }
}

.custom-btn {
    border-radius: 10px;
    background-color: var(--shade-3);
    cursor: pointer;
    border: none;
    font-family: "IsidoraSans-SemiBold";
    font-size: 1rem;
    color: var(--shade-1);
    padding: 12px;
    text-decoration: none;
}

.custom-btn:active {
    transform: translate(0, 1px);
}

@media (min-width: 769px) {
    .content-wrapper {
        transform: translateX(40px);
    }
    .text-box {
        display: block;
    }
    .button-wrapper {
        max-width: 650px;
    }
}

@media (max-width: 768px) {
    .join-wrapper {
        margin-left: 0;
    }
    .content-wrapper {
        flex-direction: column;
    }
    #home {
        height: calc(100vh - 80px);
        padding-bottom: 80px;
    }
    .container {
        justify-content: center;
        align-items: center;
        height: 100%;
    }
    .button-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 320px;
        gap: 20px;
    }
}

.qr-code {
    min-height: 150px;
    width: 150px;
    content: url(../images/vectors/qrcode.svg);
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    align-self: center;
}

.qr-code:hover {
    transform: scale(1.030);
    cursor: pointer;
}

.qr-code:active {
    transform: scale(0.970);
}

.join-btn {
    display: grid;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    box-sizing: border-box;
    background-color: var(--shade-3);
    cursor: pointer;
    text-decoration: none;
    place-items: center;
}

.join-btn:active {
    transform: scale(0.970);
}