@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

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


h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
}

h2 {
    font-size: 3rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}

img {
    max-width: 100vw;
    max-height: 100vh;
    object-fit: cover;
    object-position: center;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
}

.container {
    flex: 1;
    width: 100%;
    margin: 0 auto;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
}

main img {
    width: 30rem;
}

header.container {
    padding-top: 2rem;
    max-height: 85px;
}

footer.container {
    padding-bottom: 2rem;
    max-height: 150px;
}
