:root {
    font-size: 62.5%;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

#content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

main { 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 0.8rem;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    body {
        min-width: 35rem;
    }
}