body {
    font-family: 'Bebas Neue', sans-serif;
    background-color: #2A2F33;
    color: #fff;
    display: flex;
    justify-content: center; /* Центрування по горизонталі */
    align-items: center;     /* Центрування по вертикалі */
    margin: 0;
    text-transform: uppercase;
}


header {
    margin-bottom: 20px;
    text-align: left;
}

h1 {
    margin-top: 50px;
    font-size: 60px;
    margin-bottom: 0;
}

h1 div {
    font-size: 40px;
    margin-top: 0;
}

.button-section, .pallete-section {
    margin-top: 65px;
}


.download-btn {
    text-decoration: none;
    background-color: #ff000a;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 30px;
    /* Add margin to create space below buttons */
    display: inline-block;
    text-align: center;
    /* width: 350px; */
    /* Align text to the left */
}

.download-btn:hover {
    color: white;
}

.pallete-button {
    display: inline-block;
    border: solid 1px #ff000a;
    padding: 7px 20px 5px 20px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 30px;
    /* Add margin to create space below buttons */
    text-align: center;
    /* Align text to the left */
}

.pallete-blocks {
    display: flex;
}

.pallete-descr {
    font-size: 11px;
    font-family: 'Arial', sans-serif;
    width: 120px;
}

.pallete-block {
    margin-top: 15px;
    width: 120px;
    height: 120px;
    font-size: 12px;

}


.pallete-block.color {
    border: solid 1px #FFF;
    font-weight: bold;

}
.pallete-block + .pallete-block, .pallete-descr + .pallete-descr{
    margin-left: 15px;
}


.red-block {
    background: #FF000A;
}

.white-block {
    background: #FFF;
}

.white-block div {
    color: #919699;
}

.pallete-block div {
    margin-left: 5px;
    margin-top: 5px;
}

.gray-block {
    background: #2A2F33;
}

.graphite-block {
    background: #919699;
}

.black-block {
    background: #000000;
}

.pallete-description .pallete-block {
    font-size: 16px;
}

@media (max-width: 991px) {
    h1 {
        font-size: 40px;
    }

    h1 div {
        font-size: 20px;
    }
    
    .button-section {
        text-align: center;
    }

    .download-btn.logo {
        margin-top: 25px;
    }

    .additional-pallete {
        margin-top: 25px;
    }

    
}

a:link, a:visited, a:hover, a:active { 
    text-decoration: none; 
    color: #FFF;
} 
  