@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --ff: "Inter Tight", sans-serif;
    --bg: #b8b3ff;
    --copy: #2e2a6a;
}
  a {
    font-size: 1.5rem;
}
p {
    font-size: 1.25rem;
}

i {
    font-size: 1.5rem;
}

html, body {
    height: 100%;
    margin: 0;
  }
  
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--ff);
    background-color: var(--bg);
    color: var(--copy);
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    text-align: center;
  }
  
  header {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    top: 50px;
    font-weight: 500;
    
}

.interaction {
    display: flex;
    gap: 1.5rem;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    width: 90%;
    padding-block: 4rem;
}

.container a {
    position: relative;
    color: var(--copy);
    text-decoration: none;
    width: fit-content;
    text-align: center;
}

.container a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--copy);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.2s ease-out;
}

.container a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

footer {
    position: absolute;
    bottom: 20px;
}

.arrow {
    background: none;
    border: none;
    color: var(--copy);
    font-size: 2rem;
    cursor: pointer;
}

.align-left {
    text-align: left;
}

.column {
    flex-direction: column;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.7rem;
    }

    i, a {
        font-size: 1.3rem;
    }
}