@font-face {
    font-family: Figtree;
    src: url("/static/fonts/Figtree.ttf");
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root{

}

body{
    font-family: "Figtree", sans-serif;
    color: #404040;
    background-color: #F9E4BC;
}

main{
    height: 100dvh;
    width: 100dvw;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
}

.cursor{
    animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}