* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    /* Global Font */
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    background: #E10600;
}


.image-background {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100vw;
    height: 100vh;

    background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75)),
    linear-gradient(to bottom, rgba(225, 6, 0, 0.75), rgba(225, 6, 0, 0.75)),
    url('../img/Azerbaijan-2023-F1-Sprint.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 20px;
}


.society-logo {
    display: block;
    height: 50px;
}


.header {
    font-size: 24px;
    font-weight: 600;
    margin-top: 16px;
    text-align: center;
    line-height: 1.25;
}

.footer {
    position: absolute;
    bottom: 20px;
    display: block;
    text-align: center;
}

.footer .copyright {
    font-size: 14px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.75);
}

@media only screen and (min-width: 1000px) {
    .society-logo {
        height: 75px;
    }

    .header {
        font-size: 32px;
    }
  }