#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: white;
}
#start{
    width: auto;
    border: 1px solid white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    font-size: 56px;
    cursor: pointer;
    color: white;
    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;
    }
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px){
    #start{
        width: 300px;
        font-size: 30px;
    }
}

