@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');

body {
  background:#bac99a;
  font-family: "Cormorant Garamond", serif;
  font-size: 14pt;
  color: #423f32;
  margin:0;
}



@media screen and (max-width: 800px) {
  html, body {
    overflow-x: hidden;
    width: auto;
  }
 
  .tabs {
    position: sticky;
    top: 0;
  }
 
  .tab {
    width: 90%;
    margin:0;
    border-radius:0;

  }
}

@media screen and (min-width: 800px) {
  .tab {
      margin:0px 2px;
      border-radius:3px 3px 0px 0px;
  }
}

h2.hero {
  color:#683457;
  text-align:center;
  font-size: 40pt;
  background-image: url("./width_800_tr.webp");
  margin:0;
  padding: 20px;
}

div.border {
    width: 100%;
    display:flex;
    justify-content:center;
    position:relative;
    top: -14px;
}

.warpper {
  display:flex;
  flex-direction: column;
  align-items: center;
}

.tab {
  cursor: pointer;
  padding:10px 20px;
  background:#423f32;
  display:inline-block;
  color:#fff;
  box-shadow: 0 0.5rem 0.8rem #0000002e;
}

.tab:hover {
  background-color: #665;
}

.panels {
  background:#fffffff6;
  box-shadow: 0 2rem 2rem #0000002e;
  min-height:200px;
  width:100%;
  max-width:800px;
  border-radius:3px;
  overflow:hidden;
  padding:20px;
  line-height: 1.4;  
}

.panel {
  display:none;
  animation: fadein .8s;
  padding: 15px;
}

@keyframes fadein {
  from {
    opacity:0;
  }
  to {
    opacity:1;
  }
}

.panel-title {
  font-size:1.5em;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-align:center;
}

.radio {
  display:none;
}
#one:checked ~ .panels #one-panel,
#two:checked ~ .panels #two-panel,
#three:checked ~ .panels #three-panel{
  display:block
}
#one:checked ~ .tabs #one-tab,
#two:checked ~ .tabs #two-tab,
#three:checked ~ .tabs #three-tab{
  background:#fffffff6;
  color:#000;
  border-top: 3px solid #000;
}
