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

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

/* Global settings */
html {
    /*font-size: calc(0.6838vh + 0.6838vw)*/
    font-size: 16px;
}

html, body {
    height: 100vh;
}

body {
    font-family: Poppins, sans-serif;
    display: flex;
    flex-direction: column;
    background-color: #FFF;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100vw;
    padding: 4rem;
}

main {
    flex: 1 0 auto;
}

h1 {
    font-weight: 600;
    font-size: 4rem;
    text-align: center;
    background-color: grey;
    color: #FFFFFF;
    flex-basis: 100vw;
    padding: 0rem 2rem 0 2rem;
    border-radius: 4rem;

}

h2 {
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    background-color: grey;
    color: #FFFFFF;
    padding: 1rem;
}

footer {
    display: flex;
    justify-content: center;
    background-color: grey;
    color: #FFF;
}