
/* All screens */

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

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

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

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

.label {
  flex-shrink: 2;
  background: #d9d9d9;
  border-radius: 10px;
  padding: 10px; 
  text-align: right;
  font-size: small; line-height: 150%;
}

.label h2 {
  font-family: "Georgia", serif; font-weight: bold;
}

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

/* Desktop layout */ 
@media (min-width:800px) {
  .feature {
  max-width: 36%;
}
.links {
  flex-basis: 15%; max-width: 20%; flex-grow: 1;
}
.panel {
  flex-basis: 25%;
}
.label {
  flex-basis: 10%;
}

.break {
  flex-basis: 100%;
  height: 0;
}

}

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