/* CSS Reset margin and padding */
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Obvia', 'Montserrat', 'Helvetica', sans-serif;
}

section {
    /* define width and height */
    width: 100vw;
    height: 100vh;

    /* background image */
    /* pathing: add a '..' to go up one level */
    background-image: url('../images/dance.jpg');
    background-size: cover;

    /* flexbox */
    display: flex;
    flex-direction: column;

    /* align items positions things along the cross axis */
    align-items: center;

    /* justify-content positions things along the main axis */
    justify-content: center;
}

h1 {
    color: white;
    font-size: 4.5rem;
    margin: 0;
    
}

h2 {
    color: white;
    font-size: 3rem;
    margin: 0;
    font-weight: lighter;
}