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

body {
  margin: 0px;
  font-family: sans-serif;
  background-color: lightgray;
}

#navbar {
  background: black;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
}

#navbar a {
  text-decoration: none;
  color: red;
  padding: 24px;
  transition: color 0.8s;
  font-weight: bold;
  font-size: 24px;
}

#navbar a:focus {
  color: white;
}

#navbar a:hover {
  color: white;
}

#navbar p {
  text-align: center;
  color: red;
  font-weight: bold;
  font-size: 18px;
}

#navbar #logo {
  margin-right: auto;
  transition: opacity 0.8s;
}

#navbar #logo:hover {
  opacity: 50%;
}

#navbar #logo img {
  width: 8vw;
}

.center-column {
  width: 80vw;
  margin: 0px auto;
  margin-top: 50px;
}

.center-column hr {
  height: 4px;
  background-color: red;
}

.side {
  display: flex;
  margin: 10px;
  background-color: grey;
  font-weight: bold;
  border-radius: 8px;
}

.side p {
  padding: 6px;
  margin: 0 auto;
  color: white;
}

#footer {
  background: black;
  color: red;
  padding: 8px;
  width: 100vw;
  position: fixed;
  bottom: 0px;
}

#footer a {
  text-decoration: none;
  color: white;
  transition: color 0.8s;
}

#footer a:hover {
  color: red;
}

#footer-navbar {
  width: 800px;
  margin: 0px auto;
  display: flex;
  justify-content: space-between;
  padding: 26px;
}

#layout {
  width: 40%;
  margin: 48px auto;
  font-size: 24px;
  display: flex;
  flex-direction: column;
  margin-top: 80px;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 80px;
}

#layout p {
  margin-top: 6px;
  margin-bottom: 0px;
  font-size: 18px;
}

#layout h1 {
  font-size: 32px;
}

#layout hr {
  height: 4px;
  background-color: red;
  margin: 0 auto;
  margin-bottom: 30px;
}

#layout img {
  width: 40vh;
  margin-right: 20px;
}

#column {
  display: flex;
  flex-direction: column;
  width: 80vw;
  margin-right: 80px;
  background-color: grey;
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
}

#column hr {
  height: 4px;
  background-color: red;
}

#column h3 {
  color: white;
}

#column p {
  margin-top: 4px;
  padding: 6px;
  margin-bottom: 0px;
  color: white;
}

.box-content {
  display: flex;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 50px;
}

#flex {
  display: flex;
}

#text p {
  margin-top: 0px;
}

#contact-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 8%;
  margin-bottom: 0px;
}

#contact-left {
  border-radius: 2%;
  background-color: gray;
  padding: 50px;
  box-shadow: 2px 16px 16px 8px red;
}

.contact-left-title h2 {
  font-weight: bold;
  font-size: 40px;
  margin-bottom: 0px;
  text-align: center;
  margin-top: 10px;
}

.contact-left-title hr {
  width: 220px;
  border-radius: 10px;
  margin: 0px auto;
  background-color: red;
  height: 5px;
  margin-bottom: 50px;
}

.contact-inputs {
  width: 600px;
  height: 50px;
  border: none;
  padding-left: 25px;
  font-weight: 800;
  border-radius: 50px;
  margin-top: 10px;
}

.contact-left textarea {
  height: 100px;
  padding-top: 15px;
}

.contact-inputs:focus {
  color: black;
}

.contact-inputs::-webkit-input-placeholder {
  color: black;
}

.contact-inputs::-moz-placeholder {
  color: black;
}

.contact-inputs:-ms-input-placeholder {
  color: black;
}

.contact-inputs::-ms-input-placeholder {
  color: black;
}

.contact-inputs::placeholder {
  color: black;
}

.contact-left button {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 50px;
}

.flex {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.flex input {
  margin: 0px;
}

button {
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  color: red;
  background-color: black;
  cursor: pointer;
  transition: background-color 0.8s, color 0.8s;
}

button:hover {
  color: black;
  background-color: red;
}

#service {
  display: flex;
  align-items: center;
  margin: 50px auto;
  margin-top: 40px;
  width: 70vw;
}

.service1 hr {
  border-radius: 10px;
  margin: 0px auto;
  background-color: red;
  height: 5px;
  margin-bottom: 10px;
}

.line hr {
  height: 4px;
  background-color: red;
}

.line h1 {
  text-align: center;
  margin-top: 0px;
}

#text p {
  margin: 40px;
  font-size: 18px;
}

#about {
  width: 90vw;
  margin: 48px auto;
  font-size: 24px;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

#about p {
  margin-top: 10px;
  margin-bottom: 50px;
  font-size: 18px;
}

#about h1 {
  font-size: 32px;
  text-align: center;
}

.line hr {
  margin-bottom: 10px;
}

#about img {
  width: 40vh;
  margin-right: 20px;
}

#gallery h1 {
  margin-top: 50px;
}

#gallery {
  display: flex;
  flex-direction: column;
}

#grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 24px;
  max-width: 1800px;
  margin: 0px auto;
  gap: 28px;
}

#grid img {
  width: 100%;
  height: 400px;
  border-radius: 24px;
  -o-object-fit: cover;
  object-fit: cover;
}

#grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 24px;
  max-width: 1600px;
  margin: 0px auto;
  gap: 2%;
}

#grid2 img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}

br {
  margin-bottom: 80px;
}

#design {
  text-decoration: none;
  color: red;
  background-color: black;
  padding: 20px;
  border-radius: 40px;
  transition: all 0.7s;
}

#design:hover {
  color: black;
  background-color: red;
}

.under {
  font-size: 40px;
  text-align: center;
  margin-top: 50px;
  color: red;
  font-weight: bold;
  border-bottom: solid black 8px;
  margin-bottom: 0px;
}

#page1 .link1,
#page2 .link2,
#page3 .link3,
#page4 .link4,
#page5 .link5,
#page6 .link6 {
  color: white;
}

/* Media screens */

@media screen and (max-width: 2224px) and (min-width: 1880px) {
  #navbar {
    background: black;
    display: flex;
    align-items: center;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }

  #navbar a {
    text-decoration: none;
    color: red;
    padding: 24px;
    transition: color 0.8s;
    font-weight: bold;
    font-size: 24px;
  }

  #navbar a:hover {
    color: white;
  }

  #navbar p {
    text-align: center;
    color: red;
    font-weight: bold;
    font-size: 18px;
  }

  #navbar #logo {
    margin-right: auto;
    transition: opacity 0.8s;
  }

  #navbar #logo:hover {
    opacity: 50%;
  }

  #navbar #logo img {
    width: 150px;
  }

  .center-column {
    width: 80vw;
    margin: 0px auto;
    margin-top: 50px;
  }

  .center-column hr {
    height: 4px;
    background-color: red;
  }

  .side {
    display: flex;
    margin: 10px;
    background-color: grey;
    font-weight: bold;
    padding: 10px;
    border-radius: 8px;
  }

  #footer {
    background: black;
    color: red;
    padding: 12px;
    margin-bottom: 0px;
  }

  #footer a {
    text-decoration: none;
    color: white;
    transition: color 0.8s;
  }

  #footer a:hover {
    color: red;
  }

  #footer-navbar {
    width: 800px;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    padding: 26px;
  }

  #layout {
    width: 40%;
    margin: 48px auto;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    margin-top: 80px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 80px;
  }

  #layout p {
    margin-top: 10px;
    margin-bottom: 0px;
    font-size: 18px;
  }

  #layout h1 {
    font-size: 32px;
  }

  #layout hr {
    height: 4px;
    background-color: red;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  #layout img {
    width: 40vh;
    margin-right: 20px;
  }

  #column {
    display: flex;
    flex-direction: column;
    width: 80vw;
    margin-right: 80px;
    background-color: grey;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
  }

  #column hr {
    height: 4px;
    background-color: red;
  }

  #column p {
    margin-top: 8px;
    padding: 10px;
    margin-bottom: 20px;
  }

  .box-content {
    display: flex;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 50px;
  }

  #flex {
    display: flex;
  }

  #text p {
    margin-top: 0px;
  }

  #contact-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 200px;
  }

  #contact-left {
    border-radius: 2%;
    background-color: gray;
    padding: 50px;
    box-shadow: 2px 16px 16px 8px red;
  }

  .contact-left-title h2 {
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 0px;
    text-align: center;
    margin-top: 10px;
  }

  .contact-left-title hr {
    width: 220px;
    border-radius: 10px;
    margin: 0px auto;
    background-color: red;
    height: 5px;
    margin-bottom: 50px;
  }

  .contact-inputs {
    width: 600px;
    height: 50px;
    border: none;
    padding-left: 25px;
    font-weight: 800;
    border-radius: 50px;
    margin-top: 10px;
  }

  .contact-left textarea {
    height: 100px;
    padding-top: 15px;
  }

  .contact-inputs:focus {
    color: black;
  }

  .contact-inputs::-webkit-input-placeholder {
    color: black;
  }

  .contact-inputs::-moz-placeholder {
    color: black;
  }

  .contact-inputs:-ms-input-placeholder {
    color: black;
  }

  .contact-inputs::-ms-input-placeholder {
    color: black;
  }

  .contact-inputs::placeholder {
    color: black;
  }

  .contact-left button {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 50px;
  }

  .flex {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .flex input {
    margin: 0px;
  }

  button {
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    color: red;
    background-color: black;
    cursor: pointer;
    transition: background-color 0.8s, color 0.8s;
  }

  button:hover {
    color: black;
    background-color: red;
  }

  #service {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 0px;
  }

  #service h1 {
    margin-bottom: 4px;
  }

  .service1 hr {
    border-radius: 10px;
    margin: 0px auto;
    background-color: red;
    height: 5px;
    margin-bottom: 10px;
  }

  .line hr {
    height: 4px;
    background-color: red;
  }

  .line h1 {
    text-align: center;
  }

  #text p {
    margin: 40px;
    font-size: 18px;
  }

  #about {
    width: 90vw;
    height: 70vh;
    margin: 48px auto;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    margin-top: 80px;
  }

  #about p {
    margin-top: 10px;
    margin-bottom: 50px;
    font-size: 18px;
  }

  #about h1 {
    font-size: 32px;
    text-align: center;
  }

  .line hr {
    margin-bottom: 30px;
  }

  #about img {
    height: 60vh;
    margin-right: 20px;
  }
}

/* Media Screen 2 */

@media screen and (max-width: 1879px) and (min-width: 1200px) {
  #navbar {
    background: black;
    display: flex;
    align-items: center;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }

  #navbar a {
    text-decoration: none;
    color: red;
    padding: 24px;
    transition: color 0.8s;
    font-weight: bold;
    font-size: 24px;
  }

  #navbar a:hover {
    color: white;
  }

  #navbar p {
    text-align: center;
    color: red;
    font-weight: bold;
    font-size: 18px;
  }

  #navbar #logo {
    margin-right: auto;
    transition: opacity 0.8s;
  }

  #navbar #logo:hover {
    opacity: 50%;
  }

  #navbar #logo img {
    width: 150px;
  }

  .center-column {
    width: 80vw;
    margin: 0px auto;
    margin-top: 50px;
  }

  .center-column hr {
    height: 4px;
    background-color: red;
  }

  .side {
    display: flex;
    margin: 10px;
    background-color: grey;
    font-weight: bold;
    padding: 20px;
    border-radius: 8px;
  }

  .side p {
    padding-right: 40px;
  }

  .side #bar {
    border-right: solid red;
  }

  .side #bar {
    margin-left: 54px;
  }

  #footer {
    background: black;
    color: red;
    padding: 12px;
    margin-bottom: 0px;
  }

  #footer a {
    text-decoration: none;
    color: white;
    transition: color 0.8s;
  }

  #footer a:hover {
    color: red;
  }

  #footer-navbar {
    width: 800px;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    padding: 26px;
  }

  #layout {
    width: 80%;
    margin: 48px auto;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    margin-top: 80px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 80px;
  }

  #layout p {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 18px;
  }

  #layout h1 {
    font-size: 32px;
  }

  #layout hr {
    height: 4px;
    background-color: red;
    margin: 0 auto;
    margin-bottom: 16px;
  }

  #layout img {
    width: 40vh;
    margin-right: 20px;
  }

  #column {
    display: flex;
    flex-direction: column;
    width: 80vw;
    margin-right: 80px;
    background-color: grey;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
  }

  #column hr {
    height: 4px;
    background-color: red;
  }

  #column p {
    margin-top: 4px;
    padding: 6px;
    margin-bottom: 20px;
  }

  .box-content {
    display: flex;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  #flex {
    display: flex;
  }

  #text p {
    margin-top: 0px;
  }

  #contact-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 200px;
  }

  #contact-left {
    border-radius: 2%;
    background-color: gray;
    padding: 50px;
    box-shadow: 2px 16px 16px 8px red;
  }

  .contact-left-title h2 {
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 0px;
    text-align: center;
  }

  .contact-left-title hr {
    width: 220px;
    border-radius: 10px;
    margin: 0px auto;
    background-color: red;
    height: 5px;
    margin-bottom: 30px;
  }

  .contact-inputs {
    width: 600px;
    height: 50px;
    border: none;
    padding-left: 25px;
    font-weight: 800;
    border-radius: 50px;
    margin-top: 10px;
  }

  .contact-left textarea {
    height: 100px;
    padding-top: 15px;
  }

  .contact-inputs:focus {
    color: black;
  }

  .contact-inputs::-webkit-input-placeholder {
    color: black;
  }

  .contact-inputs::-moz-placeholder {
    color: black;
  }

  .contact-inputs:-ms-input-placeholder {
    color: black;
  }

  .contact-inputs::-ms-input-placeholder {
    color: black;
  }

  .contact-inputs::placeholder {
    color: black;
  }

  .contact-left button {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 50px;
  }

  .flex {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .flex input {
    margin: 0px;
  }

  button {
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    color: red;
    background-color: black;
    cursor: pointer;
    transition: background-color 0.8s, color 0.8s;
  }

  button:hover {
    color: black;
    background-color: red;
  }

  #service {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 24px;
  }

  #service h1 {
    margin-bottom: 4px;
  }

  .service1 hr {
    border-radius: 10px;
    margin: 0px auto;
    background-color: red;
    height: 5px;
    margin-bottom: 10px;
  }

  .line hr {
    height: 4px;
    background-color: red;
  }

  .line h1 {
    text-align: center;
  }

  #text p {
    margin: 40px;
    font-size: 18px;
  }

  #about {
    width: 80vw;
    height: 70vh;
    margin: 48px auto;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    margin-top: 80px;
  }

  #about p {
    margin-top: 10px;
    margin-bottom: 50px;
    font-size: 18px;
  }

  #about h1 {
    font-size: 32px;
    text-align: center;
  }

  .line hr {
    margin-bottom: 30px;
  }

  #about img {
    height: 50vh;
    margin-right: 20px;
  }
}

/* Media Screen 2 */

@media screen and (max-width: 1199px) and (min-width: 800px) {
  #navbar {
    background: black;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }

  #navbar a {
    text-decoration: none;
    color: red;
    padding: 24px;
    transition: color 0.8s;
    font-weight: bold;
    font-size: 24px;
  }

  #navbar p {
    display: none;
  }

  #navbar #logo img {
    display: none;
  }

  .center-column {
    width: 80vw;
    margin: 0px auto;
    margin-top: 50px;
  }

  .center-column hr {
    height: 4px;
    background-color: red;
  }

  .side {
    display: flex;
    margin: 10px;
    background-color: grey;
    font-weight: bold;
    padding: 20px;
    border-radius: 8px;
  }

  .side p {
    padding-right: 40px;
  }

  .side #bar {
    border-right: solid red;
  }

  .side #bar {
    margin-left: 54px;
  }

  #footer {
    background: black;
    color: red;
    padding: 12px;
    margin-bottom: 0px;
  }

  #footer a {
    text-decoration: none;
    color: white;
    transition: color 0.8s;
  }

  #footer a:hover {
    color: red;
  }

  #footer-navbar {
    width: 800px;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    padding: 26px;
  }

  #layout {
    width: 70%;
    margin: 48px auto;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    margin-top: 80px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 80px;
  }

  #layout p {
    margin-top: 0px;
    margin-bottom: 50px;
    font-size: 18px;
  }

  #layout p:last-child {
    margin: 0px;
  }

  #layout h1 {
    font-size: 32px;
    margin: 0px;
  }

  #layout hr {
    height: 4px;
    background-color: red;
    margin: 0 auto;
    margin-bottom: 16px;
  }

  #layout img {
    width: 40vh;
    margin-right: 20px;
  }

  #column {
    display: flex;
    flex-direction: column;
    width: 80vw;
    margin-right: 0px;
    background-color: grey;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
  }

  #column hr {
    height: 4px;
    background-color: red;
  }

  #column p {
    margin-top: 8px;
    padding: 4px;
    margin-bottom: 6px;
  }

  .box-content {
    display: flex;
    width: 90%;
    margin: 20px auto;
    gap: 24px;
  }

  #contact-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 200px;
  }

  #contact-left {
    border-radius: 2%;
    background-color: gray;
    padding: 50px;
    box-shadow: 2px 16px 16px 8px red;
    margin-bottom: 0px;
  }

  .contact-left-title h2 {
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 0px;
    text-align: center;
  }

  .contact-left-title hr {
    width: 220px;
    border-radius: 10px;
    margin: 0px auto;
    background-color: red;
    height: 5px;
    margin-bottom: 20px;
  }

  .contact-inputs {
    width: 50vw;
    height: 50px;
    border: none;
    padding-left: 25px;
    font-weight: 800;
    border-radius: 50px;
    margin-top: 10px;
  }

  .contact-left textarea {
    height: 100px;
    padding-top: 15px;
  }

  .contact-inputs:focus {
    color: black;
  }

  .contact-inputs::-webkit-input-placeholder {
    color: black;
  }

  .contact-inputs::-moz-placeholder {
    color: black;
  }

  .contact-inputs:-ms-input-placeholder {
    color: black;
  }

  .contact-inputs::-ms-input-placeholder {
    color: black;
  }

  .contact-inputs::placeholder {
    color: black;
  }

  .contact-left button {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 50px;
  }

  .flex {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .flex input {
    margin: 0px;
  }

  button {
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    color: red;
    background-color: black;
    cursor: pointer;
    transition: background-color 0.8s, color 0.8s;
  }

  button:hover {
    color: black;
    background-color: red;
  }

  #about {
    width: 90vw;
    margin: 48px auto;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
  }

  #about p {
    margin-top: 10px;
    margin-bottom: 50px;
    font-size: 18px;
  }

  #about h1 {
    font-size: 32px;
    text-align: center;
  }

  .line hr {
    margin-bottom: 16px;
  }

  #about img {
    height: 60vh;
    margin-right: 20px;
  }

  .under hr {
    margin: 0px;
  }
}

/* Media Screen 3 */

@media screen and (max-width: 799px) and (min-width: 250px) {

  .center-column {
    width: 90vw;
    margin: 0px auto;
    margin-top: 50px;
  }

  .center-column hr {
    height: 4px;
    background-color: red;
  }

  .side {
    display: flex;
    flex-direction: column;
    margin: 4px;
    background-color: grey;
    font-size: 12px;
    padding: 6px;
    border-radius: 8px;
    gap: 20px;
  }

  .side p {
    margin-left: 0px;
    font-size: 18px;
  }

  #footer {
    background: black;
    color: red;
    padding: 12px;
    margin-bottom: 0px;
    display: none;
  }

  #footer a {
    text-decoration: none;
    color: white;
    transition: color 0.8s;
  }

  #footer a:hover {
    color: red;
  }

  #footer-navbar {
    width: 800px;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    padding: 26px;
  }

  #layout {
    width: 90%;
    margin: 48px auto;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 12px;
  }

  #layout p {
    font-size: 16px;
  }

  #layout h1 {
    font-size: 22px;
  }

  #layout hr {
    margin-bottom: 16px;
  }

  #column {
    display: flex;
    flex-direction: column;
    width: 80vw;
    margin-right: 80px;
    background-color: grey;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
  }

  #column h3 {
    font-size: 18px;
  }

  #column p {
    margin-top: 8px;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 16px;
  }

  .box-content {
    display: flex;
    flex-direction: column;
    width: 80vw;
    margin-bottom: 50px;
    gap: 20px;
  }

  #about {
    width: 90vw;
    height: 70vh;
    margin: 48px auto;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    margin-top: 80px;
  }

  #about p {
    margin-top: 10px;
    margin-bottom: 50px;
    font-size: 18px;
    margin-left: 0px;
  }

  #about h1 {
    font-size: 32px;
    text-align: center;
  }

  #about img {
    height: 0vh;
    margin-right: 0px;
    display: none;
  }
}

/* Media Screen for Navbar */

@media screen and (max-width: 1200px) and (min-width: 782px) {
  #navbar {
    background: black;
    display: flex;
    align-items: center;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    margin: 0 auto;
    justify-content: space-evenly;
  }

  #navbar a {
    text-decoration: none;
    color: red;
    padding: 24px;
    transition: color 0.8s;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 0px;
  }

  #navbar a:last-child {
    border: none;
  }

  #navbar #logo {
    margin-right: auto;
    transition: opacity 0.8s;
    display: none;
  }
}

/* Media Screen 2nd for Navbar */

@media screen and (max-width: 798px) and (min-width: 250px) {
  #navbar {
    background: black;
    display: flex;
    align-items: center;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    margin: 0 auto;
    flex-direction: column;
  }

  #navbar a {
    color: red;
    padding: 6px;
    font-size: 18px;
    border-bottom: solid white;
  }

  #navbar a:last-child {
    border: none;
  }

  #navbar #logo {
    margin-right: auto;
    transition: opacity 0.8s;
    display: none;
  }
}

/* Media Screen Contact Page */

@media screen and (max-width: 850px) and (min-width: 450px) {

  #contact-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 100px;
  }

  .contact-left-title h2 {
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 0px;
    text-align: center;
    margin-top: 8%;
  }

  .contact-inputs {
    width: 300px;
    height: 50px;
    border: none;
    padding-left: 20px;
    font-weight: 400;
    border-radius: 50px;
    margin-top: 6px;
  }
}

/* Media Screen Contact Page 2nd */

@media screen and (max-width: 449px) and (min-width: 250px) {

  #contact-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 100px;
  }

  .contact-left-title h2 {
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 0px;
    text-align: center;
    margin-top: 0%;
  }

  #contact-left {
    border-radius: 2%;
    background-color: gray;
    padding: 8px;
    box-shadow: 2px 16px 16px 8px red;
    margin-bottom: 0px;
  }

  .contact-inputs {
    width: 210px;
    height: 50px;
    border: none;
    padding-left: 8px;
    font-weight: 400;
    border-radius: 50px;
    margin-top: 6px;
  }
}

/* Grid page */

@media screen and (max-width: 970px) and (min-width: 730px) {
  #grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 24px;
    max-width: 1800px;
    margin: 0px auto;
    gap: 48px;
  }

  #grid img {
    width: 100%;
    height: 400px;
    margin: 0px;
    border-radius: 24px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

/* Grid page 2 */

@media screen and (max-width: 730px) and (min-width: 350px) {
  #grid {
    display: grid;
    grid-template-columns: 1fr;
    padding: 24px;
    max-width: 1800px;
    margin: 0px auto;
    gap: 48px;
  }

  #grid img {
    width: 100%;
    height: 400px;
    margin: 0px;
    border-radius: 24px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  #navbar {
    background: black;
    display: flex;
    align-items: center;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    margin: 0 auto;
    flex-direction: column;
  }

  #navbar a {
    color: red;
    padding: 6px;
    font-size: 18px;
    border-bottom: solid white;
  }

  #navbar a:last-child {
    border: none;
  }

  #navbar #logo {
    margin-right: auto;
    transition: opacity 0.8s;
    display: none;
  }
}

/* design text media screen */

@media screen and (max-width: 440px) and (min-width: 150px) {
  #design {
    text-decoration: none;
    display: flex;
    flex-wrap: wrap;
    font-size: 20px;
    color: red;
    background-color: black;
    padding: 20px;
    border-radius: 40px;
    transition: all 0.7s;
    justify-content: center;
    width: 80%;
    margin: 0px auto;
  }
}