body {
    font-family: "Archivo", sans-serif;
    font-variation-settings: "wdth" 100;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

header {
    text-align: center;
    width: 250px;
    height: 200px;
    margin: 0 auto;
    margin-top: 40px;
}

header img {
    max-width: 90%;
    height: auto;
}

h1 {
    color: black;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 60px;
}

h2 {
    color: black;
    font-size: 15px;
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

a {
    text-decoration: none;
    margin: 10px;
}

button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #141d9ddf;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #c03f3f;
}

.fa-brands, .fa-solid {
    margin-right: 10px;
    font-size: 25px;
}

footer {
    padding: 0 20px;
    text-align: center;
    color: black;
    position: relative;
    bottom: 0;
    width: 90%;

}