#registerInclude {
    margin-top: 100px;
    width: 100%;
    height: 400px;
    background: var(--yellowColor);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

#registerIncludeContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
}

#ready {
    font-size: 34px;
    font-weight: lighter;
    color: #333324;
}

#start {
    width: auto;
    border: 2px solid var(--primary);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    font-size: 56px;
    cursor: pointer;
    color: #333324;
    position: relative;
    z-index: 1;
}

#start:hover {
    color: white;
}

#registerInclude:hover #layer {
    left: 0;
    transition: 1s;
}

#layer {
    position: absolute;
    background: black;
    width: 100%;
    height: 100%;
    left: 100%;
    opacity: 0.1;
}

@media only screen and (max-width: 600px) {
    #start {
        width: 300px;
        font-size: 30px;
    }
}

@media only screen and (max-width: 768px) {
    #start {
        width: 300px;
        font-size: 30px;
    }
}
