:root {
  --white-color: #ffffff;
  --g-blue: #4285f4;
  --g-green: #34a853;
  --g-yellow: #fbbc04;
  --g-red: #ea4335;
  --g-grey: #dadce0;
}

@font-face {
  font-family: "Google Sans";
  src: url("fonts/GoogleSansWebFont.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  overflow-x: hidden;
  font-family: "Google Sans", sans-serif;
}

h2 {
  font-size: 2.5rem;
}

p {
  font-size: 1.3rem;
}

#about {
  padding-top: 30px;
  padding-bottom: 30px;
}

#sponsors,
#prizes,
#themes,
#faq,
#contact {
  padding-top: 30px;
  padding-bottom: 30px;
}

.nv-brand {
  width: 400px;
}

#home {
  width: 100%;
  background-image: url("./images/background.png");
  background-size: contain;
  object-fit: contain;
}

.hero-container {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.register-btn {
  margin-top: 50px;
  background-color: var(--g-blue);
  padding: 20px;
  font-size: 1.2rem;
  border-radius: 0;
  color: #e8eaed;
}

.connect-btn {
  background-color: var(--g-red);
  border-radius: 0px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px;
  color: #fff;
}
.connect-btn:hover {
  background-color: var(--g-yellow);
}

.register-btn:hover {
  background-color: var(--g-green);
}

.about-container {
  padding-left: 10rem;
  padding-right: 10rem;
  text-align: justify;
}

.hero-text {
  font-size: 4rem;
}

.hero-image {
  width: 800px;
}

.sponsor-container {
  /* background-color: var(--g-grey); */
  background: url(./images/back2.webp);
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sponsor-image {
  width: 300px;
}

.dec-div {
  height: 10px;
  width: 100px;
  background-color: var(--g-green);
  margin: auto;
  margin-bottom: 10px;
  border-radius: 10px;
}

.theme-container {
  display: flex;
  flex-wrap: wrap;
  padding-left: 10rem;
  padding-right: 10rem;
  justify-content: space-around;
}

.faq-container {
  padding-left: 10rem;
  padding-right: 10rem;
}

.contact-container {
  padding-left: 10rem;
  padding-right: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.theme-object {
  height: 100%;
  /* width: 100%; */
  /* box-shadow: 4.2px 4.5px 5.3px rgba(0, 0, 0, 0.036),
    14.1px 15px 17.9px rgba(0, 0, 0, 0.054), 63px 67px 80px rgba(0, 0, 0, 0.09); */
  border-radius: 10px;
  border: 1px solid var(--g-blue);
  padding: 20px;
  margin: 10px;
}

.theme-object:hover {
  box-shadow: 4.2px 4.5px 5.3px rgba(0, 0, 0, 0.036),
    14.1px 15px 17.9px rgba(0, 0, 0, 0.054), 63px 67px 80px rgba(0, 0, 0, 0.09);
}

@media screen and (max-width: 767px) {
  .nv-brand {
    width: 250px;
  }
  .hero-image {
    width: 300px;
  }
  .about-container {
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: justify;
  }
  .theme-container {
    display: flex;
    flex-wrap: wrap;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .theme-object {
    height: 100%;
    /* width: 100%; */
    /* box-shadow: 4.2px 4.5px 5.3px rgba(0, 0, 0, 0.036),
      14.1px 15px 17.9px rgba(0, 0, 0, 0.054), 63px 67px 80px rgba(0, 0, 0, 0.09); */
    border-radius: 10px;
    border: 1px solid var(--g-blue);
    padding: 10px;
    margin: 5px;
  }
  .faq-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .contact-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
