@import url("BrandColors.css");

@font-face {
    font-family: branded-font;
    src: url(Handlee-Regular.ttf);
}

@font-face {
    font-family: branded-font-heading;
    src: url(Tangerine-Regular.ttf);
}

@font-face {
    font-family: branded-font-heading;
    src: url(Tangerine-Bold.ttf);
    font-weight: bold;
}

:disabled {
  opacity: 0.25;
}


*{
    padding:0;
    margin:0;
}
html {
  width:100%;
  height:100%;
  max-width: 100%;
  background-color: #aeb79d;
  color:#47523d;
  width:100%;
}
body {
  margin:0;
  padding:0;
  width:100%;
  max-width: 1650px;
  min-height:100%;
  font-family:branded-font, sans-serif;
  text-align: center;
  font-size: 130%;
  background-color: white;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

button {
  background-color: white;
  color: #47523d;
  border: 2px solid;
  border-radius: 5px;
  transition: color 0.2s linear;
  transition: background-color 0.2s linear;
}

.big-button {
  color: white;
  background-color: #47523d;
  border: 2px solid;
  border-radius: 15px;
  transition: color 0.2s linear;
  transition: background-color 0.2s linear;
  font-size: 1.2rem;
  padding: 20px;
  max-width: 320px;
}

.fake-button {
  display: block;
  margin: auto;
  color: white;
  background-color: #47523d;
  border: 2px solid;
  border-radius: 15px;
  transition: color 0.2s linear;
  transition: background-color 0.2s linear;
  font-size: 1rem;
  padding: 20px;
  max-width: 240px;
  margin-bottom: 10px;
  margin-top: 30px;
  text-decoration: none;
}


.clicked {
  background-color: #aeb79d;
  color: white;
  transition: color 0.4s linear;
  transition: background-color 0.4s linear;
}

h1, h2, h3{
  font-family:branded-font-heading, cursive;
  padding-bottom: 10px;
}

h1{
  font-size: 6rem;
}
h2{
  font-size: 3.5rem;
}
h3{
  font-size: 2.8rem;
}

hr {
  width: 80%;
  margin: auto;
  margin-bottom: 10px;
}

.header-wrapper {
  height: 350px;
  max-width: 1650px;
  width: 100%;
  background-image: url(Wishing-Well-Banner.jpg);
  background-position: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.info-holder {
  max-width: 45rem;
  margin: auto;
  padding-bottom: 30px;
}

p {
  padding-bottom: 10px;
}
  

.option-card {
  padding: 20px;
  min-height: 400px;
  width: 80%;
  margin: auto;
  margin-bottom: 10px;
  visibility: visible;
  opacity:1;
  background-color: rgba(var(--purple-rgb), .86);
  color:var(--yellow); 
  text-align: center;
  overflow-y: auto;
  border: 3px solid;
  border-radius: 10px;
  -webkit-transition:opacity 0.8s linear,
    transform 0.5s linear;
  -moz-transition:opacity 0.8s linear,
    transform 0.5s linear;
  -ms-transition:opacity 0.8s linear,
    transform 0.5s linear;
  -o-transition:opacity 0.8s linear,
    transform 0.5s linear;
  transition:opacity 0.8s linear,
    transform 0.5s linear;
}


.hidden {
  visibility: hidden;
  height: 0;
  min-height: 0;
  width: 0;
  min-width: 0;
  padding: 0;
  margin: 0;
  opacity:0;
}

.option-left.hidden {
  transform: translateX(-200px);
}

.option-right.hidden {
  transform: translateX(200px);
}

.flex-info {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
}

.flex-left, .flex-right, .flex-button { 
  text-align: center;
  min-width: fit-content;
  width: 20%;
}

.flex-button {
  width: 10%;
}

.flex-left, .flex-button {
  flex-grow: 0;
}

