@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&family=Ubuntu:ital,wght@0,300;0,500;1,300&display=swap"); /* ubuntu google fonts */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 10px;
  scroll-behavior: smooth;
}
body {
  font-family: "Open Sans", sans-serif;
  font-family: "Ubuntu", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  /* background-color: #fff; */
  color: #333;
  background-image: url("../public/bg4.png");
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #333;
}
h1,
h2 {
  font-weight: 500;
  line-height: 1.2;
}
p {
  margin: 1rem 0;
}
img {
  width: 100%;
}
.text-center {
  text-align: center;
}

.HeadingH2 {
  text-align: center;
  margin: 2rem;
  font-style: italic;
  font-family: cursive;
  font-size: xx-large;
}

#services {
  background-image: url("../public/bg.png");
}

/* navbar */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #d872dc;
  opacity: 0.8;
  color: #fff;
  position: relative;
  top: 0;
  width: 100%;
  height: 150px;
  padding: 0 3rem;
  z-index: 1;
  font-family: "Dancing Script", cursive;
  font-style: italic;
}
.navbar a {
  color: #fff;
  padding: 1rem 2rem;
  margin: 0 0.5rem;
}
.navbar a:hover {
  border-bottom: 2px solid var(--warning);
}
.navbar ul {
  display: flex;
}
.navbar .brand {
  font-weight: 700;
  font-size: 65px;
}
.navbar h1 {
  font-size: 3rem;
}
.navbar span {
  color: #720472;
  font-weight: bolder;
  font-size: 65px;
}

/* header */

.main-header {
  background: url("./public/1.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: #fff;
  position: relative;
}
.main-header.blog {
  background: url("./public/1.jpeg");
  height: 50vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: 50px;
  color: #fff;
  position: relative;
}
.main-header .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
.main-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.main-header * {
  z-index: 5;
}
.main-header .content h1 {
  font-size: 5.5rem;
}
.main-header p {
  font-size: 2.3rem;
  max-width: 60rem;
  margin: 2rem 0 3rem;
}

/* icons */

.icons {
  padding: 3rem;
}
.icons h3 {
  margin-bottom: 1.5rem;
  font-size: x-large;
  font-weight: 700;
  font-family: "Caveat", cursive;
}
.icons i {
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

/* about */

.about {
  color: #000000;
  padding: 40px;
  margin: 40px;
  text-align: center;
  font-size: 20px;
}
.about h2 {
  font-size: 4rem;
  font-weight: 700;
}
.about p {
  margin: 6rem 0;
}

/* contact */
.column-2 h3 {
  margin: 2rem;
  font-size: larger;
  font-style: italic;
}

.contact h2 {
  font-size: 4rem;
}

/* articles */
.articles {
  padding: 5rem 5rem 3rem 5rem;
}
.article {
  margin-top: 1.5rem;
  color: #fff;
}

/* footer */
.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 200px;
}
.footer a {
  color: var(--danger);
}
.footer a:hover {
  opacity: 0.7;
}
.footer .social a {
  margin-right: 10px;
}
.footer p {
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  html {
    font-size: 9px;
  }
  .navbar {
    /* flex-direction: column; */
    height: 120px;
    padding: 20px;
  }
  .navbar a {
    padding: 10px;
    margin: 0 3px;
  }
  .teams img {
    width: 70%;
  }

  iframe {
    width: 350px;
  }

  .navbar .brand {
    font-weight: 700;
    font-size: 15px;
  }

  .navbar span {
    color: #720472;
    font-weight: bolder;
    font-size: 15px;
  }
}
