/*Class Style*/

/* CSS reset */
html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    
}

.hero {
    height: 100vh;
    background-image: url('../img/dance_hero.jpg');
    background-size: cover;
    
    /* Flexbox */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:flex-start;
}

h1 {
    color: white;
    font-size: 9rem;
    margin:0;
    margin-left: 5%;
}

h2{
    color: white;
    font-size: 2.5rem;
    margin:0;
    margin-left: 5%;
}

/* footer */
footer {
    height:25vh;
    background-color: #337AE5;

    display: flex;
    /* logo on left; btn on right */
    justify-content: space-between;
    align-items: center;

}


.buttonStyle {
    /* remove underline */
    text-decoration: none;

    /* Button Style */
    font-family:  Arial, sans-serif;
    font-size: 16px;
    color:rgb(47, 28, 168);
    background-color: white;

    /* button box size */
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;

    /* round coner */
    border-radius: 5px;

    /* add border line */
    border-width: 5px;
    border-color: blue;
    border-style: double;
}

