@font-face {
    font-family: James-Regular;
    src: url(./Assets/James-Regular-1.otf);
  }

@font-face {
font-family: James-Stencil;
src: url(./Assets/James-Stencil-1.otf);
}

@font-face {
  font-family: Neue-Haas-Display;
  src: url(./Assets/NeueHaasDisplayRoman.ttf);
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  height: 100%;
  width: 100%;
  font-family: James-Regular, sans-serif;
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  background-image: url(./Assets/noise_minimal.png);
  background-repeat: repeat;

}
 
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, iframe {
  vertical-align: bottom;
  max-width: 100%;
}

input, textarea, select {
  font: inherit;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.body-wrapper {
  height: 100vh;
  width: 100%;
  display: flex;
  flex: 1 1 auto;
  flex-grow: 1;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 0;
}

.main-content-container {
  width: 100%;
  height: 100%;
  display: grid;
}


.main-content {
    width: 100%;
    display: flex;
    justify-self: center;	
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.logo {
    width: 600px;
    max-width: 80%;
}

.description-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 95%;
    max-width: 560px;
    margin-top: 24px;
}

.description {
  display: none;
  font-family: Neue-Haas-Display;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: normal;
}

p {
    font-size: 24px;
    letter-spacing: 0.04rem;
    text-align: center;
}

.button-container {
    display: flex;
    gap: 24px;
}

a.button {
    text-decoration: none;
    color: initial;
}

a.button {
    font-family: James-Regular;
    cursor: pointer;
    font-size: 20px;
    padding: 12px 24px;
    padding-top: 14px;
    border: none;
    color: #000;
    font-weight: 700;
    transition: filter 1s;
    text-align: center;
    border-radius: 0.25rem;
}

#yellow {
  background-color: #F4DF69;
}

#red {
  background-color: #E36266;
}

#blue {
  background-color: #89D5FA;
}

#green {
  background-color: #7FB752;
}

#orange {
  background-color: #FC9D71;
}

#gray {
  background-color: #d6d6d6;
}

#gray:hover {
  filter: none;
  cursor: initial;
}


a.button:hover {
  filter: brightness(110%);
  }
  
a.button:focus,
a.button:active {
    background-color: black;
    transition: none;
  }

footer {
    padding-top: 24px;
    font-family: Neue-Haas-Display;
}

.footer-text {
    font-size: 12px;
    color: #322d24;
    text-align: center;
    line-height: 1.5;
}

.footer-text a {
    text-decoration: none;
    color: #322d24;
}

.footer-text a:hover {
    text-decoration: underline;
}


@media screen and (max-width: 760px) {
    .button-container {
        flex-direction: column;
        gap: 24px;
    }
}

@media screen and (max-width: 640px) {

    p {
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
    }

    a.button {
        font-size: 16px;
    }

    .description-container {
        max-width: 85%;
        margin-top: 12px;
        margin-bottom: 12px;

    }

    .description {
      font-size: 14px;
    }

    
}

@media screen and (max-height: 700px) {

    .main-content {
        gap: 24px;
    }

}