body {
    padding-top: 60px;
    background-color: #252121;
    font-size: 150%;
    color: white;
    text-align: left;
}
/* ===== BOUTONS ===== */
.buttons {
    margin-top: 32px;
    display: flex;
    gap: 20px;
}
.btn,
.btn2 {
    padding: 10px 18px;
    border-radius: 8px;
    background: #1f1f1f;
    color: #f1f1f1;
    text-decoration: none;
    font-weight: 80%;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #2b2b2b;
    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}
.btn {
    margin-left: 10px;
}
.btn2 {
    margin-left: auto;
    margin-right: 10px;
}
.btn:hover,
.btn2:hover {
    transform: translateY(-4px);
    background: #242424;
    box-shadow: 0 10px 30px rgba(255,159,67,0.4);
}
/* ===== HEADER & FOOTER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #0a0909;
    z-index: 10000;
    display: flex;
    align-items: center;
}
footer {
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0a0909;
    font-size: 15px;
    color: #F2F0EA;
    text-align: center;
}
/* ===== ICONES ===== */
.icon,
.btn i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}
.btn:hover .icon,
.btn:hover i {
    transform: scale(1.2) rotate(-8deg);
}
