/*
sedgwick ave display
*/

@font-face {
    font-family: 'Grand Canyon';
    src: url('/fonts/grandcanyon.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Ruigslay';
    src: url('/fonts/ruigslay.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
  font-family: 'Gloria Hallelujah';
  src: url('/fonts/gloriahallelujah.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

:root{
  --blue-main: #785bf9;
  --blue-dark: #442c9b;
  --pink-bg: #f5a7f1;
  --pink-main: #ff3fa2;
  --white: #f9c4ff;
  --purple: #ea7eff;
  font-family: 'Gloria Hallelujah';
}

body {
  color: var(--blue-main);
  background-color: var(--pink-bg);
  background: linear-gradient(284deg, var(--purple) 0%, var(--pink-main) 50%, rgb(248, 150, 93) 100%);
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px;
  padding: 20px;
  background-color: var(--white);
  border-radius: 50px;
}

h1 {
  font-family: 'Grand Canyon';
  color: var(--blue-main);
  font-size: 80px;
  margin: 0;
}

.title-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 30px;
}

.logo {
  height: 160px;
  width: auto;
}

button {
  display: block;
  margin: 24px auto 0;
  background: var(--blue-main);
  color: var(--white);
  font-family: 'Gloria Hallelujah';
  font-size: 20px;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 200ms ease, transform 180ms ease;
}

button:hover {
  background: var(--blue-dark);
}

button:active {
  transform: scale(0.9);
}
