body {
    background-color: var(--title-blue);
    width: 100vw;
    overflow-x: hidden;
}

#logo_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 60vh;
    width: 100vw;
    background-color: var(--bg-grey);
    border-radius: 0 0 50vw 50vw;
    margin: 0;
}

#logo_container #hands_logo{
    width: auto;
    height: 40vh;
    margin: 0 auto;
}

@media screen and (max-width: 600px) {
    #logo_container #hands_logo{
        width: 90vw;
        height: auto;
    }
}

#logo_container #text_logo{
    width: auto;
    height: 10vh;
    margin: 0 auto;
}

#claim{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10vh auto 0 auto;
    width: 100vw;
}

#button_start {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 330px;
    height: 50px;
    background-color: var(--title-blue);
    border: solid 2px var(--orange);
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

#button_start:hover {
    background-color: var(--orange);
}

#button_start a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: var(--orange);
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

#button_start:hover a {
    color: var(--title-blue);
}