#enterWorldBtn {
    --border-width: 4px;
    --btn-width: calc(100% - var(--border-width) * 2);
    --btn-height: 64px;

    display: block;
    position: relative;
    width: var(--btn-width);
    height: var(--btn-height);
    border: var(--border-width) dashed var(--color-primary);
    cursor: pointer;
    user-select: none;
}

#enterWorldBtn .outline {
    display: block;
    position: absolute;
    top: 4px;
    left: 4px;
    margin: 0;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    outline: 2px solid var(--color-dark);
}


#enterWorldBtn .btn-label {
    position: relative;
    width: 100%;
    height: 100%;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.5rem;
    text-align: center;
    align-content: center;
}

#enterWorldBtn:hover {
    background-color: var(--color-primary);
}

#enterWorldBtn:hover .btn-label {
    color: var(--color-bg);
    font-weight: 700;
}
