*,
*::after,
*::before {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Satoshi', sans-serif;
    background-color: rgb(32, 32, 32); /* Fond principal noir */
}

section {
    padding: 70px 0;
    height: 100vh;
}

/* Importation des polices */
@font-face {
    font-family: 'BowlbyOne';
    src: url('polices/BowlbyOne-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Satoshi';
    src: url('polices/Satoshi-Medium.woff') format('woff');
}

@font-face {
    font-family: 'Rubik';
    src: url('polices/RubikGlitch-Regular.ttf') format('truetype');
}

/* Styles pour la section des détails */
.details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9; 
    text-align: center;
    margin: 20px auto; 
    padding: 20px; 
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    max-width: 400px; 
}


.details img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px; 
}

.details h1 {
    font-size: 24px;
    margin: 10px 0; 
    font-family: 'BowlbyOne', sans-serif; 
}

.details p {
    font-size: 18px;
    margin: 10px 0; 
}

.details .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    color: #ffffff;
    background-color: #000000; 
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    font-family: 'BowlbyOne', sans-serif; 
}

.details .btn:hover {
    background-color: #696969; 
}
