*,
html {
  margin: 0;
  padding: 0;
  font-family: "Coolvetica Rg", sans-serif;
}

nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 34px 50px;
}

ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  gap: 64px;
}

.title {
  font-family: "Coolvetica Rg", sans-serif;
  font-weight: 700;
}

.containerHero {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 16px;
  gap: 16px;
}

.containerImage {
  /* border: 1px solid pink; */
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.choirul {
  font-family: "Coolvetica Rg", sans-serif;
  font-weight: 600;
}

.subtitle {
  font-family: "Coolvetica Rg", sans-serif;
  font-weight: 400;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  background-position: center;
}

.containerTextHero {
  /* border: 1px solid green; */
}

.containerTextHero .title {
  color: #2349ff;
}

.containerHero .subtitle {
  font-weight: 300;
}

@media only screen and (min-width: 1024px) {
  .containerHero {
    flex-direction: row-reverse;
    max-width: 80%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
  }

  .containerImage {
    width: 30vw;
    height: 30vw;
  }

  .containerHero h2 {
    font-size: 48px;
  }

  .containerHero .subtitle {
    font-size: 30px;
  }
}

@font-face {
    font-family: 'Coolvetica\ Rg';
    src:  url('./fonts/Coolvetica\ Rg.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

#material {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    margin: 10px;
    text-align: center;
    background-color: #f2f2f2;
  }
  #material h2 {
    color: #333;
  }
  #material button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  #material button:hover {
    background-color: #0056b3;
  }
  