@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-image: linear-gradient(to bottom, #484f79, #717bf9);}

.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.affichage .occasion {
    margin: 20px 0;
}

.affichage .zero {
    margin-bottom: 20px;
}

.affichage p {
    font-size: 1.5rem;
    color: #FFF;
}

.affichage p span {
    font-weight: 500;
}

.boutons {
    margin-top: 40px;
    width: 400px;
    display: flex;
    justify-content: space-between;
}

.boutons button {
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 5px;
    padding: 8px 10px;
    font-size: 0.8rem;
    width: 110px;
    color: white;
    transition: 0.3s;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.boutons button.btn-passe {
    background-color: #080;
}

.boutons button.btn-occasion {
    background-color: #FFA500;
}

.boutons button.btn-zero {
    background-color: #F00;
}

.boutons button.btn-passe:hover {
    background-color: #006400;
}

.boutons button.btn-occasion:hover {
    background-color: #bb7900;
}

.boutons button.btn-zero:hover {
    background-color: #b30000;
}

@media screen and (max-width:450px) {
    .boutons {
        flex-direction: column;
        width: auto;
        height: 160px;
    }
}