:root {
  interpolate-size: allow-keywords;
  --hue: #00ffff;
  --panel-primary: #fefeff;
  --panel-secondary: #121c33;
  --panel-alternative: lch(96.88% 0.52 290.36);

  font-family: 'Figtree', sans-serif;
  line-height: 1.5;
  color: var(--panel-secondary);

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  place-items: center;
  place-content: center;
  min-width: 100vw;
  min-height: 100vh;

  background-image: url("../background.jpg");
  background-size: cover;
  background-position: center;
}

h1 {
  font-size: 2rem;
  line-height: 1.1;
  margin: 0;
}

button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;

    position: relative;

    border: solid 1px var(--panel-secondary);
    border-radius: 5rem;
    padding: 0.5rem;
    gap: 0.5rem;

    height: 2.75rem;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */

    background-color: transparent;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.05s;

    &:hover {
        background-color: var(--panel-secondary);
        color: var(--panel-primary);
    }

    &:active {
        transform: scale(0.97);
    }
}

.logo {
    position: absolute; 
    top: 1rem;
    right: 1rem;
    width: 10rem;
    height: min-content;
}

.copyright {
    position: absolute;
    bottom: 1rem;
    left: 1rem;

    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #fbfcfc;
}