* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rubik", sans-serif;
}

:root {
  --mobile-card-width: 90%;
  --button-cta-color: #ffc100;
  --border-radius: 4px;
}

body {
  background-color: #060e1d;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

@media (min-width: 1025px) {
  body {
    background-color: #2c2c2c;
    background-position: top center;
    display: grid;
    grid-template-columns: 100% 460px 36%;
    gap: 0px;
    justify-content: flex-end;
    align-items: flex-start;
  }
}
