@import url('https://fonts.googleapis.com/css2?family=Emblema+One&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
  --warm-yellow: #f9c242;
}

* {
  box-sizing: border-box;
  font-family: "Nunito", sans;
}

html {
  height: 100%;
  padding: 0;
}

body {
  height: 100%;
  overflow: hidden;

  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
}

header {
  background-color: var(--warm-yellow);
  /* position: sticky; */
  top: 0;
  width: 100%;
  nav {
    width: 100%;
    padding: 1rem;
    a {
      color: rgb(234, 34, 117);
      text-decoration: none;
      font-family: "Emblema One", system-ui;
      font-size: 1.5rem;
      background-color: rgba(255, 255, 255, 0.5);
      padding: 0.25rem 0.8rem;
      border-radius: 2rem;
      border: 4px double white;

      transition: color 0.2s;
    }
    a:hover {
      color: rgb(173, 6, 202);
    }
  }
}

main {
  flex-grow: 1;
  overflow: auto;
  &> div {
    height: 100%;
  }
}

.home-link-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-bottom: 10rem;
  gap: 1rem;
  margin-inline: 1rem;
  
  a {
    background-color: rgb(180, 243, 247);
    color: rgb(11, 66, 144);
    width: 100%;
    max-width: 25rem;
    padding: 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    border: 2px solid transparent;
    transition: border-color 0.2s;

    &:hover {
      border-color: rgb(95, 155, 245);
    }
  }
}