@import "header.css";
:root{
  --shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px,
  rgba(6, 24, 44, 0.65) 0px 4px 6px -1px,
  rgba(255, 255, 255, 0.08) 0px 1px 0px inset
}
* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 22px;
}

html{
  overflow: hidden;
}
body {
  color: black;
  background: linear-gradient(to right, rgb(167, 5, 137), rgb(24, 6, 159));
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 0.7rem;
}

::-webkit-scrollbar-track {
  background: linear-gradient(rgb(167, 5, 137), rgb(12, 1, 23));
  border-radius: 1rem;
}

::-webkit-scrollbar-thumb {
  background-color: tomato;
  border-radius: 1rem;
}

.main-container{
  overflow-y: auto;
  width: 100%;
  height: 100vh;
}



li:hover a{
  background-color: lightcoral;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  transition: 0.7s;
}

h1 {
  text-align: center;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  line-height: 70px;
}

.contact-form {
  background-color: lightslategrey;
  width: 40%;
  top: 20%;
  padding: 10px 10px;
  border-radius: 8px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.contact-form {
  margin-top: 0;
  font-weight: 200;
}

.txt {
  border: 1px solid black;
  margin: 8px 0;
  padding: 12px 18px;
  border-radius: 8px;
  background-color: white;
}

.txt label {
  display: block;
  text-align: left;
  color: black;
  text-transform: uppercase;
  font-size: 18px;
}

.txt input,
.txt textarea {
  width: 100%;
  border: none;
  background: none;
  outline: none;
  font-size: 16px;
  margin-top: 6px;
}

.btn {
  display: inline-block;
  background: red;
  padding: 14px 0;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  width: 100%;
  border-radius: 5px;
}

.btn:hover {
  background-color: lightseagreen;
}

.socail-form {
  background-color: lightseagreen;
  display: flex;
  justify-content: right;
  font-size: 50px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.heading {
  margin-bottom: 30px;
  text-shadow: 3px 4px 7px rgba(81, 67, 21, 0.8);
  margin-top: 10px;
}

.middle-section {
  display: flex;
  width: 100%;
  padding: 10px 25px;
  margin: auto;
  gap: 2rem;
  align-items: stretch;
}

.middle-section > div{
  flex:1;
}

.socail-form {
  flex-direction: row;
}

a {
  color: white;
}

.phone {
  border-radius: 5px;
  background-color: whitesmoke;
  border-left: 5px double coral;
  border-right: 5px double coral;
  box-shadow: var(--shadow);
}

h3 {
  font-size: 20px;
  border-bottom: 1px double coral;
  padding: 20px;
}

p {
  margin-left: 80px;
  font-size: 20px;
  font-weight: bolder;
  display: inline;
}

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

.txt:hover {
  background-color: lightcoral;
}

@media screen and (max-width: 600px) {
  .main-container {
    display: flex;
    flex-direction: column;
  }


  .middle-section {
    flex-direction: column;
  }
  .middle-section > div{
    width: 100%
  }

}