* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Architects Daughter', cursive;
  transition: 0.5s;
}
:root {
  --primary-color: #fff;
  --second-color: #000;
  --third-color: #393939;
}
.dark-mode {
  --primary-color: #000;
  --second-color: #fff;
  --third-color: #fff;
}
body {
  background-color: var(--primary-color);
}
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.navbar {
  background-color: var(--primary-color);
}

#icon,
#icon1 {
  width: 20px;
  cursor: pointer;
}

#user {
  width: 35px;
  border: 1px solid silver;
  border-radius: 50%;
  padding: 5px;
}

footer {
  background-color: #000;
  padding: 40px;
}
footer h2 {
  font-size: 25px;
  font-weight: 300;
  color: white;
  font-family: "Architects Daughter", cursive;
  text-align: center;
  padding-bottom: 20px;
}
footer .d-flex {
  width: 400px;
  height: 50px;
  justify-content: space-evenly;
  margin: auto;
}
footer img {
  width: 35px;
}
footer iframe {
  padding-top: 20px;
  margin: auto;
  display: flex;
}

footer p {
  font-size: 12px;
  color: #777777;
  text-align: center;
  padding-top: 20px;
}

#sec1 {
  margin-top: 80px;
}
#sec1 #block {
  background-color: rgb(6, 6, 39);
  border-radius: 5px;
}
#sec1 .col-sm-6 img {
  width: 100%;
}
#sec1 .col-sm-6:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 0 40px;
}
#sec1 h2{
  font-family: "Architects Daughter", cursive;
}

@media only screen and (max-width: 992px) {
  *{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  footer h2 {
    font-size: 25px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  footer p{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  #sec1 #block {
    flex-direction: column-reverse;
    align-items: center;
    padding: 0px;
    background-color: var(--primary-color);
  }
  #sec1 .col-sm-6 {
    width: 100%;
    color: var(--second-color);
  }
  #sec1 .col-sm-6:nth-child(2) {
    color: var(--second-color);
    justify-content: start;
    padding: 0;
  }
  #sec1 h2 {
    font-size: 25px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  #sec1 p {
    font-size: 15px;
  }
}

@media only screen and (max-width: 800px) {
  footer .d-flex {
    width: 100%;
  }
  footer iframe {
    width: 100%;
    height: 250px;
  }
  footer {
    padding: 80px 10px;
  }
  #sec1 h2,
  footer h2 {
    font-size: 20px;
  }
  #sec1 p {
    font-size: 12px;
  }
}

@media only screen and (max-width: 400px) {
  footer img {
    width: 30px;
  }
}
