*{
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
}

/* .color1 { #4eb3de }; azul
.color2 { #8de0a6 }; verde
.color3 { #fcf09f }; amarelo
.color4 { #f27c7c }; vermelho
.color5 { #de528c }; rosa */

html, body {
    height: 100%;
}

main{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin-top: 50px;
    margin-bottom: 50px;
}



a{
    text-decoration: none;
    color: black;
}

@font-face {
    font-family: satisfy;
    src: url(../FONTS/Satisfy/Satisfy-Regular.ttf);
}

@font-face {
    font-family: rem;
    src: url(../FONTS/REM/REM-VariableFont_wght.ttf);
}


@font-face {
    font-family: popins;
    src: url(../FONTS/Poppins/Poppins-Italic.ttf);
}

@font-face {
    font-family: linkedin;
    src: url(../FONTS/avenir-regular.ttf);
}

@font-face {
    font-family: segoe;
    src: url(../FONTS/segoeuithisi.ttf);
}

@font-face {
    font-family: git;
    src: url(../FONTS/GitHub/MonaSans-VariableFont_wdth\,wght.ttf);
}

/* .header{
    padding: 20px;
    text-align: left;
    background: #ce2a1d;
}

.header h1{
    font-weight: 100;
    font-size: 40px;
    font-family: satisfy;
    color: white;
} */

.navbar{
    overflow: hidden;
    background-color: #333;
}

.navbar a{
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-family: rem;
}

.navbar a:hover{
    background-color: #ddd;
    color: black;
}

.box_harmonica{
    padding: 14px 20px;
}

.box_harmonica h2{
   font-family: rem;
   font-weight: 300;
}


.box_harmonica p{
   font-family: rem;
   font-weight: 300;
}

.harmonicaimg{
    width: 540px;
    border-radius: 10px;
    height: 360px;
}

iframe{
    width: 540px;
    border-radius: 10px;
    height: 360px;
}

.boxOne{
    display: flex;
    /* background-color: red; */
}

.menu{
    height: 30px;
}

@media screen and (max-width: 700px) {
    .row{
        flex-direction: column;
    }
    .boxOne{
        display: flex;
        flex-direction: column;
        /* background-color: red; */
    }
    .harmonicaimg{
        width: 100%;
        border-radius: 10px;
        height: 100%;
    }
    iframe{
        width: 100%;
        border-radius: 10px;
        height: 360px;
    }
    main{
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 400px){
    .navbar a{
        float: none;
        width: 100%;
    }

}

