
/* All screens */

@font-face {
  font-family: "Shrikhand";
  src: url("/a/Shrikhand-Regular.ttf");
}


body { 
  background: repeat url("/a/paisley_a.png"); 
  background-size: 25%;
  background-color: #d35c85; 
  }
.c {
  width: 90%;
  display: flex; 
  flex-wrap: wrap; row-gap: 10px;
  margin-left: 5%; justify-content: space-evenly;
  font-family: "Helvetica", sans-serif; align-items: flex-start; 
} 
.head { 
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #E4EDE7; 
  color: #d35c85;
  border-radius: 20px; 
  text-align: right; 
  font-weight: bold; 
  font-family: "Shrikhand"; 
  text-transform: uppercase; 
  font-size: xxx-large; 
}
.links {
  border-radius: 25px;
  background: #2c001e;
  text-align: center; 
  padding: 25px;
  
}
.links a {
  display: block;
  text-decoration: none;
  color: #d9d9d9;
  font-weight: bold;
  border-radius: 5px;
  border: 2px solid #863a54; 
  background: #863a54; 
  margin-top: 10px;
  padding: 5px;
}
.links a:hover {
  background: #2c001e; }
  

.feature img {
  max-width: 95%; border-radius:10px; border: 10px solid #d9d9d9;

}

.panel {
  background: #e4ede7;
  border-radius: 25px;
  padding-left: 10px; padding-right: 10px;  text-align: justify; 
  font-size: medium; 
  line-height: 200%;
  
} 
.panel p {text-indent: 2em; } 

.panel a {
  font-weight: bold; text-decoration: underline;
  color: #ca5580; 
}
.panel a:hover {
  text-decoration: none;
}

/* Desktop layout */ 
@media (min-width:800px) {
  .feature {
  max-width: 40%;
}
.links {
  flex-basis: 20%; 
}
.panel {
  flex-basis: 25%;
}

}

/* Mobile layout */
@media (max-width:800px) {
  .panel, .links, .feature {flex-basis: 100% ;}
}
