
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: black;
    line-height: 1.5;
    background-image: url('banner-victoria-1.webp');
    background-size:cover;
    background-repeat: no-repeat;
}

h1 {
    font-weight: 700;
}

h2 {
    font-weight: 500;
}

p {
    font-weight: 400;
}

.info-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 25px;
    width: 250px;
    background-color: white;
    margin: auto;
}
.logo {
    max-width: 100px;
}

@media (max-width: 800px) {
    body {
        background-image: unset;
    }
}
