/* styles.css */
body {
    font-family: 'Inter', sans-serif;
    background-color: #0C3C56;
    transition: background-color 0.3s, color 0.3s;

}

.card {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    font-family: "amboy-black", sans-serif;
    font-size: 15em;
    color: #0C3C56;
    font-weight: 400;
font-style: normal;
}

h2 {
    font-family: "amboy-black", sans-serif;
    font-size: 8em;
    color: #F06250;
    font-weight: 400;
font-style: normal;
}

h3 {
    font-family: "amboy-black", sans-serif;
    font-size: 3em;
    color: #F06250;
    font-weight: 400;
font-style: normal;
}

.steam-button {
    display: inline-block;
    background-color: #F06250; /* Couleur tomate pour le bouton */
    color: white;
    padding: 1px 5px;
    border-radius: 9px;
    font-size: 1.5em;
    font-family: "amboy-black", sans-serif;
    margin-top: px;
    text-decoration: none;
    transform: rotate(-6deg);
}

.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #F06250;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-decoration: none;
    font-size: 1em;
}

.floating-button i {
    stroke-width: 2;
    stroke: white;
    width: 24px;
    height: 24px;
    margin-right: 12px; /* Augmenté l'espace entre l'icône et le texte */
}

.
