@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
/* Réinitialisation des styles */
* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styles de base */
body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
}

.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.content p {
    text-align: justify;
    margin-bottom: 30px;
}

.head {
    margin-bottom: 100px;
}

.title {
    font-size: 5rem;
    letter-spacing: 5px;
    margin-bottom: 50px;
}

.convertisseur {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.convert2 {
    max-width: 500px;
    width: 100%;
}

.convert-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

#hexInput {
    width: 200px;
    padding: 7px;
    border: 2px solid #000;
    border-radius: 10px;
}

button {
    background-color: #fff;
    color: #000;
    font-weight: 700;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

button:hover {
    cursor: pointer;
    background-color: #000;
    color: #fff;
}
