@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100;200;300;400;500;600;700;800;900&family=Spartan:wght@100;200;300;400;500;600;700;800;900&family=Ubuntu:ital,wght@0,300;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

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

ul {
  list-style: none;
}

body,
html {
  height: 100%;
  width: 100%;
  background-color: rgb(250, 250, 250);
  font-size: 16px;
}

header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 60vh;
  width: 100%;
  background-image: url("../images/bg-pattern-intro.svg"),
    linear-gradient(to right, hsl(13, 100%, 72%), hsl(353, 100%, 62%));
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  border-bottom-left-radius: 100px;
  color: #fcfcfc;
}

nav {
  display: flex;
  width: 100%;
  height: 100px;
  justify-content: space-around;
  align-items: center;
  padding: 0 60px;
}

#links-nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
}

.links-container {
  /* display: flex; */
}

.links-container a {
  text-decoration: none;
  color: #fcfcfc;
}

.links-container.left {
  width: 80%;
}

.right {
  display: flex;
  width: 20%;
}

.links-container.left a {
  margin: 0 10px;
}

nav h1 {
  font-size: 2.5rem;
}

#signup {
  color: red;
  border: 0px;
  border-radius: 12px;
  padding: 8px 16px;
  background-color: white;
}

.header-container1 {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.header-container12 {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-around;
  margin: 0 90px;
  padding: 0 30px;
}

.header-container2 {
  display: flex;
}

.header-container3 {
  display: flex;
}

#start {
  border-radius: 12px;
  padding: 12px;
  color: white;
  background-color: red;
  border: 0px;
}

#learn {
  border-radius: 12px;
  padding: 12px;
  color: red;
  background-color: white;
  border: 0px;
}

#subtitle {
  margin: 3rem auto;
  text-align: center;
}

.container {
  display: flex;
  align-content: center;
  padding: 0 8rem;
}

.header-container h3 {
  margin-top: 2.5rem;
}

.header-container p {
  margin-top: 1.5rem;
}

footer {
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  background-color: black;
  border-top-right-radius: 100px;
  justify-items: center;
  margin-top: 3rem;
  padding: 2rem;
}

footer ul {
  margin-top: 2rem;
}

footer ul li a {
  text-decoration: none;
  color: white;
}

footer ul li {
  margin-top: 0.5rem;
}

@media screen and (max-width: 600px) {
  .links-container.left {
    display: none;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  footer div {
    margin-top: 3rem;
  }

  .container {
    flex-wrap: wrap;
  }
}
