* {
  box-sizing: border-box;
}
 @font-face {
    font-family: 'vhsgothic';
    src: url(https://teammeatcute.neocities.org/attr/vhsgothic.ttf);
        }
        
body {
  margin: 0;
  background-color: #efefef;
  font-family: 'vhsgothic';
}

  
/* Style the header */
.header {
  background-color: #f1f1f1;
  padding: 20px;
  text-align: center;
}



/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #22333d;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #D1345B;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #41151F;
  color: #D1345B;
}

/* Create three unequal columns that floats next to each other */
.column {
  float: left;
  padding: 10px;
}

@media (min-width: 600px){
/* Left and right column */
.column.left {
  width: 25%;
  margin-left: 10%;
}
}


.column.right {
  width: 25%;
}

/* Middle column */
.column.middle {
  width: 30%;
}



/* card for sidecolumns */
.card  {
  background-color: #FFB800;
  color: #D1345B;
  padding: 20px;
  margin-top: 20px;
  border-radius: 25px; 
   }
   
.fullwidthcard {
  background-color: #48A9A6;
  color: #D1345B;
  border-radius: 25px; 
  padding: 20px;
  margin-top: 20px;
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* Clear floats after the columns */
.halfrow::after {
  content: "";
  display: table;
  clear: both;
}

/* Style the footer */
.footer {
  background-color: #22333d;
  padding: 10px;
  color: #D1345B;
}

 .btn-group button {
  background-color: #22333d; 
  /* border: 1px solid #EEC584; */
  border-radius: 12px;
  color: #D1345B; 
  font-size: 16px;
  padding: 10px 24px; /* Some padding */
  cursor: pointer; /* Pointer/hand icon */
  width: 50%; /* Set a width if needed */
  display: block; /* Make the buttons appear below each other */
}

.btn-group button:not(:last-child) {
  border-bottom: none; /* Prevent double borders */
}

/* Add a background color on hover */
.btn-group button:hover {
  background-color: #41151F;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column.left, .column.middle, .column.right {
    width: 100%;
  }
}