* {
  margin: 0;
  padding: 0;
  user-select: none;
}
.img h1 {
  margin-top: 20px;
  margin: 30px;
}
img{
  margin-left: 40px;
  margin-top: 10px;
}
nav{
  margin: auto;
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  padding: 10px;
}
button{
  border: none;
  border-radius: 30px;
  width: 70px;
  /* padding: 10px; */
  height: 30px;
  background-color: green;
  color:white;
}
button:active{
  scale: .9;
}
.container {
  margin: auto;
  padding: 30px;
  max-width: 900px;
  display: grid;
  grid-auto-rows: 200px;
  grid-template-areas:
    "b c"
    "b e"
    "d e"
    "d f"
    "g f";
  grid-gap: 5px;
}

.sec {
  justify-content: center;
  align-items: center;
  background-position: center;
  backdrop-filter: blur(2px);
  border-radius: 20px;
  padding: 10px;
  /* margin: 10px; */
  transition: ease-in-out 0.3s;
  bottom:0px;
}
.t{
  display: none;
}
.team{
  border-radius: 50px;
  display: none;
  justify-content: center;
  align-items: center;
  margin: 10px;
  margin-top: 100px;
  height: 100px;
  width:  100px;
  border: solid white;
}
.s2 {
  grid-area: b;
  background-color: black;
  color: white;
  display: flex;
}
.s3 {
  grid-area: c;
  color: white;
  background-color: black;
  display: flex;
}
.s4 {
  grid-area: d;
  color: white;
  background-color: black;
  display: flex;
}
.s5 {
  grid-area: e;
  color: white;
  background-color: black;
  display: flex;
}
.s6 {
  grid-area: f;
  color: white;
  background-color: black;
  display: flex;
}
.s7 {
  grid-area: g;
  color: white;
  background-color: black;
  display: flex;
}

span{
    display: none;
    background-color: white;
    width: 30px;
    color: black;
    position: fixed;
    top: 10px;
    left: 10px;
}
:target{
    position: fixed;
    width: 80%;
    max-width: 900px;
    background-color: black;
    transform: translateY(10px);
    color: white;
    height: 90%;
    z-index: 100;
    top: 10px;
}
body:has(:target) span{
    display: block;
}
body:has(#contact:target) form{
    display: block;
}
body:has(#team:target) .team{
  display: inline-flex;
}
body:has(#team:target) .t{
  display: block;
}
body:has(:target) {
overflow-y: hidden;
}
form{
    margin: auto;
    display: none;
}
input{
    width: 70%;
    max-width: 300px;
    height: 30px;
    margin: 10px;
    border-radius: 10px;
    transition: 0.1s ease-in-out;
    border: none;
}
textarea{
    width: 70%;
    max-width: 300px;
    height: 70px;
    border-radius: 10px;
    resize: none;
}
input[type=submit]:active{
scale: .93;
}
.sec:active{
scale: .9;
}
.sec{
  transition: 0.1s ease-in-out;
}

