html,body{
    height:100%;
    margin:0;
    padding:0;
    box-sizing: border-box;
}

.navbar-expand-lg {
    position: fixed !important;
    z-index: 1;
    width: 100%;
}

article{
    padding:50px 0;
}

section {
    padding:70px 0;
    height:100%;
    min-height: 550px;
}

section header{
    padding:50px 0;
    justify-content: center;
}

section header h2{
    font-size: 32px;
    text-align: center;
    font-weight: bold;
}

/*About me*/
#about-me img {
    max-width:500px;
}


#music iframe {
    margin-bottom: 10px;
  }
  
/* Video */
#video .video-player{
    width:75%;
    margin:auto;
}


/* Services */
#services ul{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  min-height: 400px;
  margin:auto;
}

#services ul li{
  list-style: none;
  font-size:25px;
  width:100%;
  border:1px solid grey;
  padding:20px;
  margin-bottom:10px;
}

#contact .content {
  display:flex;
  height:100%;
  margin:auto;
  justify-content: center;
  align-items:center;
}

#contact .content a {
  width: 250px;
  border: 1px solid;
  margin-right: 10px;
  padding: 20px;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  color: white;
  background: black;
}


/* Small devices (landscape phones, 576px) */
@media (max-width: 576px) {  
 
/*About me*/
img {
    width:100%;
}


article{
    padding:100px 0;
}

section {
    padding:20px 0;
    height:100%;
    min-height: 550px;
}

section header{
    padding:10px 0;
    justify-content: center;
}

section header h2{
    font-size: 25px;
}

/* Video */
#video .video-player{
    width:100%;
    margin:auto;
}


/* Services */
#services ul{
  padding:0;
}

#services ul li {
    font-size:16px;
}

}