*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
}

@font-face {
  font-family: AveriaSerif;
  font-weight: normal;
  src: url(/assets/AveriaSerifLibre-Light.ttf);
}

@font-face {
  font-family: AveriaSerif;
  font-weight: bold;
  src: url(/assets/AveriaSerifLibre-Bold.ttf);
}

@font-face {
  font-family: AveriaSerif;
  font-style: italic;
  src: url(/assets/AveriaSerifLibre-LightItalic.ttf);
}

:root {
  --text: #e6d9f2;
}

body,
#contact-info,
#newsletter {
  display: flex;
  flex-direction: column;
  text-align: center;
}

body {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-family: AveriaSerif, serif;
  color: var(--text);
  background: radial-gradient(at center top, #8019e6, #0d0033);
  /* background-color: #8019e6; */
  background-attachment: fixed;
  height: 100vh;
  gap: 30px;
  min-width: 600px;
}

h1 {
  font-size: 4rem;
  letter-spacing: -2px;
}

#logo {
  width: 60vw;
  margin-top: 20px;
}

.logo {
  width: 400px;
  /* float: left; */
}

em {
  font-size: 1.3rem;
  letter-spacing: -0.3px;
}

em a {
  color: var(--text);
}

.flyer {
  width: 500px;
  /* margin-top: 20px; */
  border-radius: 10px;
  box-shadow: 0 0 30px #000a;
}

.shop-btn {
  background-color: var(--text);
  padding: 5px 50px;
  margin-bottom: 15px;
  color: #6f22bb;
  font-family: inherit;
  font-weight: bold;
  letter-spacing: -2px;
  font-size: 3rem;
  border-radius: 3rem;
  border: 5px transparent solid;
  cursor: pointer;
  box-shadow: 0 0 20px #000a;
}
.shop-btn:hover {
  background-color: #0000;
  border: 5px solid var(--text);
  box-shadow: 0 0 90px var(--text);
  color: var(--text);
}
input {
  width: 250px;
  height: 30px;
  border-radius: 20px;
  padding-left: 15px;
  margin-top: 10px;
  border: none;
  font-family: inherit;
  font-style: italic;
  font-size: 1.2rem;
  background-color: var(--text);
  color: #6f22bb;
}

input::selection {
  background-color: #6f22bb;
  color: var(--text);
}

.submit-btn {
  height: 30px;
  text-transform: uppercase;
  font-family: inherit;
  font-size: 1.2rem;
  border: 2px solid var(--text);
  border-radius: 2rem;
  background-color: #0000;
  color: var(--text);
  padding: 0px 30px;
  cursor: pointer;
  margin-left: 10px;
}

.submit-btn:hover {
  background-color: var(--text);
  color: #4f1489;
}


#contact-info {
  padding-bottom: 50px;
}

footer {
  font-family: sans-serif;
  background-color: #3b0080;
  /* position: fixed; */
  padding-block: 5px;
  bottom: 0px;
  font-size: small;
  justify-content: center;
  border-top: 2px solid #70f;
  width: 100%;
}

.attr,
.attr a {
  color: #fffa;
}

::selection {
  background-color: var(--text);
  color: #4f1489; 
}


hr {
  border: 1px solid var(--text);
  width: min(70vw, 400px);
}

.hidden {
  display: none;
}
@media screen and (max-width: 700px) {
  body {
    width: 95vw;
    min-width: 90vw;
    margin:auto;
  }

  .flyer {
    width: 90vw;
  }
  
  .logo {
    width: 70vw;
  }
  .submit-btn {
    margin-top: 15px;
  }
  footer {
    width: 97vw;
    padding-bottom: 25px;
  }
}