* {
  margin: 0px;
  font-family: Arial;
  border: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-image: linear-gradient(to right top, #008793, #00bf72);
}

.navbar {
  width: 100%;
  background-color: #212529;
}

.navbar-brand {
  font-family: "Dancing Script";
  font-weight: bolder;
  font-size: 30px;
  background-image: linear-gradient(to right top, #008793, #00bf72, #a8eb12);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 110px;
}

.nav-options {
  color: white;
  display: flex;
  justify-content: space-around;
  width: 270px;
  margin-right: 100px;
}

a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}

.hero {
  color: white;
}

.hero-text {
  display: flex;
  justify-content: center;
}

.hero p {
  font-family: sans-serif;
  font-size: 3rem;
  margin-top: 20px;
  display: block;
}

.hero img {
  height: 500px;
  width: 50%;
}

footer {
  padding: 20px;
  margin-top: auto;
  background-color: #1d1d1d;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: #eee;
}
.contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
}
.contact-img {
  width: 100% !important;
}
@media screen and (max-width: 600px) {
  .contact-body {
    grid-template-columns: 1fr;
  }
  .contact-img {
    display: none;
  }
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  .box {
    background-color: #ffffff;
    width: calc(100px + 5vw);
    aspect-ratio: 1;
    padding: 20px;
    border-radius: 10px;
    color: #000000;
    display: flex;
    align-items: center;
    font-weight: 700;
    justify-content: center;
    font-size: 40px;
    transition: 250ms;
    font-family: sans-serif;
  }
}

.box:hover {
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.37);
}

i {
  padding: 0px;
}

.box {
  display: flex;
  flex-direction: column;
}

.box p {
  font-size: 20px;
}

.white-space {
  white-space: nowrap;
}
