html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    background-color: #ffffff;
    color: #333;
    justify-content: space-between;
}

header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin: 1rem;
    padding: 1rem;
}

header > img:hover {
    cursor: pointer;
    filter: invert(1);
}

header img {
    width: 20svh;
    height: auto;
}

header p {
    font-size: 1.5rem;
    font-weight: bold;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    flex: 1;
}

main img {
    width: 60%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

main h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

main p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

footer {
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-top: 2px solid #a0a0a0;
}

footer img {
    width: 20vh;
    height: auto;
    margin: 0 0.5rem;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    header img {
        width: 25svh;
    }

    main img {
        width: 100%;
    }

    main h1 {
        font-size: 2rem;
    }

    main p {
        font-size: 1rem;
    }

    footer {
        flex-direction: column;
    }

    footer img {
        width: 25vh;
    }
}
