@font-face {
  font-family: "OverusedGrotesk";
  src: url("https://cdn.xuno.co/xuno-fonts/fonts/overusedGrotesk/OverusedGrotesk-Variable.woff2")
    format("woff2-variations");
  font-weight: 100 900; /* adjust min/max to the variation axes allowed */
  font-style: normal;
  font-display: swap; /* or optional / fallback etc. */
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

body {
  font-family: "OverusedGrotesk", sans-serif;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.animation-container {
  position: relative;
  width: 1200px;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
  transform-origin: top center;
  -webkit-transform-origin: top center;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  flex-shrink: 0;
}

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

  color: #444444;
  text-decoration: none;
}

.screen-container {
  width: 1200px;
  background-color: var(--background);
  height: 200px;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease-in-out;

  border: 3px solid;
  border-image-source: linear-gradient(90deg, #03314b 0%, #0fb85d 100%);
  border-image-slice: 1; /* required to display the border */
}

