* {
  font-family: "Raleway", sans-serif;
}
html {
  scroll-behavior: smooth;
}

body {
  max-width: 100vw;
  line-height: 1.8;
}
#myNavbar {
  width: 100vw;
  display: flex;
  justify-content: space-between;
}
.ls-nav-list {
  display: flex;
  font-size: 10px;
}
#logo{
  margin-top: 40px;
}
.w3-bar .w3-button {
  padding: 16px;
}
#msgCoord{
  width: 300px;
  margin-right: auto;
  margin-left: auto;
}

.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #ccc; 
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}

.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.exco-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.crt{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background-image: url('crtfl.jpg');
  background-size: contain;
  border: 5px solid green;
  padding: 0;
}
.crtPhoto{
  margin: 0;
  padding: 0;
  border: 1px solid white;
}
.album-prod{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background-color: #9a0707;
  background-size: contain;
  border: 5px solid green;
}


#customers {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#customers td, #customers th {
  border: 1px solid #ddd;
  padding: 2px;
  font-size: 12px;
  text-align: center;
}

#customers tr:nth-child(even){background-color: #f2f2f2;}

#customers tr:hover {background-color: #ddd;}

#customers th {
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
  background-color: #04AA6D;
  color: white;
}
.download {
  font-size: 20px;
}
.download:active{
  color: #04AA6D;
}
#songs{
  margin-bottom: 70px;
}

.footer{
  margin: 0;
}

@media only screen and (max-width: 720px) {
 .exco-container {
  grid-template-columns: repeat(2, 1fr);
  line-height: 1;
  font-size: 12px;
}
.crt{
  grid-template-columns: repeat(4, 1fr);
}
.album-prod{
  grid-template-columns: repeat(3, 1fr);
}
}