* {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body, html {
    width: 100vw;
    height: 100vh;
    background-color: white;;
}

/*CABEÇALHO*/
header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 68px;
    background-color: lightgray;
    position: sticky;
    top: 0;
    left: 0;
    padding: 0.625rem;
    z-index: 60;
}

/*MENU HAMBURGUER*/
.btn-drawer {
    display: block;
    background-color:rgb(29, 28, 28);
    color: white;
    text-align: center;
    padding: 0.625rem;
    margin-right: 0.5rem;
    cursor: pointer;
}

.btn-drawer:hover {
    background-color:rgb(253, 60, 79);
}

.drawer-list {
    height: calc(100% - 68px);
    width: 200px;
    position: fixed;
    z-index: 80;
    top: 68px;
    right: -200px;
    transition: right 1s;
    background-color: black;
}

.drawer-link {
    display: block;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: whitesmoke;
    background-color: black;
    border-top: 2px solid white;
    font-weight: bold;
    padding: 0.75rem;
}

.drawer-link:hover {
    background-color: rgb(253, 60, 79);
}

/*MENU*/
.header-nav {
    display: none;
}

/*CONTEÚDO*/
main {
    width: 90vw;
    background-color: #b3b3b3;
    margin: auto;
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
    padding: 0.625rem;
    border-radius: 0.625rem;
    color: #26201a;
    font-weight: bold;
}

.main-title {
    padding-bottom: 1.25rem; 
    text-align: center;
    color: crimson;
}

.sub-title {
  text-align: center;
  padding-bottom: 1.25rem; 
}

.main-article-p {
    text-align: center;
    margin-bottom: 0.9375rem;
    text-indent: 1.25rem;
    font-size: 0.75rem;
    background-color: #ecd5b5;
    padding: 0.5rem;
    border-radius: 10px ;
}

.main-article-figure {
    text-align: center;
}

.instrument-img {
    width: 180px;
    border-radius: 10px;
} 

.instrument-name {
    color: crimson;
}


.characteristics-instrument {
    font-size: 0.75rem;
    background-color: #ecd5b5;
    padding: 0.5rem;
    border-radius: 10px ;
}

.list-main  {
    text-align: center;
    padding: 0.75rem;
    list-style: none;
}

.content-list {
    font-size: 0.75rem;
    padding-bottom: 0.75rem;
}


/*RODAPÉ*/
footer {
    width: 100%;
    background-color: lightgray;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem;
}

.link-list-medias{
  display: flex;
  gap: 1.25rem;
}

.footer-link-medias {
    width: 1.5rem;
    height: 1.5rem;
    padding: 0.0625rem;
}

.footer-img-contact {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.footer-img-description {
    font-size: 0.75rem;
    font-weight: bold;
    color: rgb(29, 28, 28)
}

/*MEDIA QUERIES*/
@media (min-width: 1200px) {
    
.header-nav {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
    
.header-nav-link {
    display: block;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: whitesmoke;
    background-color: black;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    font-weight: bold;
    padding: 0.625rem;
  }
    
.header-nav-link:hover {
    background-color: rgb(253, 60, 79);
  }

  .main-title {
    font-size: 1rem;
  }
  
  .main-article-p{
    font-size: 1rem;
  }
  
.instrument-img {
    width: 200px;
  } 
   
  .content-list {
    font-size: 1rem;
  }
}