﻿.start {
    min-height: 100vh;
    margin: 0;
    background-image: url('/font/amoureux.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.startcontainer {
    height: 100vh;
    display: flex;
    align-items: center; /* centre vertical */
}

.start-screen {
    margin-left: 10%; /* décale vers la gauche (~1/3 visuel) */
    text-align: left; /* texte aligné à gauche */
    max-width: 500px;
}
.btn-start {
   /* background: #A7D106;*/
   margin-top: 2rem;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}

    .btn-start:hover:not(:disabled) {
        background: #C2F527;
    }
    .start-text{
        margin-top: 4rem;
    }

    .btn-start:disabled {
        background: #b0c4de;
        cursor: not-allowed;
    }
