*
{
  margin: 0px;
  box-sizing: border-box;
  font-family: 'Port Lligat Sans', sans-serif;
}
html
{
  background-color: black;
}
.input {
    height: 35vh;
    border-top-left-radius: 4px;
    grid-area: tel;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(58, 58, 58);
  }
  .input > div
  {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
  }
  .input > div > input
  {
    display: flex;
    justify-content: center;
    font-size: 2rem;
    text-align: center;
    width: 70%;
    height: 25%;
    outline: none;
    color:white;
    background: linear-gradient(0deg, #000,#262626);
    box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.2), 0 6px 20px 0 rgba(255, 255, 255, 0.19);
  }
  .input > div > input + input
  {
    margin-top: 65px;
  }
.mesaj
{
  background-color: rgb(58, 58, 58);
    grid-area: poza;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.mesaj > textarea
{
  background: linear-gradient(0deg, #000,#262626);
  font-size: 2rem;
  outline: none;
  color: white;
  box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.2), 0 6px 20px 0 rgba(255, 255, 255, 0.19);
  width: 70%;
  height: 70%;
  resize: none;
}
.buton
{
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: rgb(58, 58, 58);
  display: flex;
  height: 15vh;
  justify-content:flex-end;
  align-items: center;
  grid-area: btn;
}
#btn
{
  position: relative;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 4px;
  border: none;
  background-color:#59CD64;
  width: 20%;
  height: 50px;
  transition: 1s;
  margin-right: 15%;
}
::placeholder
{
  color: white;
}
#btn:hover
{
  box-shadow: inset 20rem 0 0 0 #2943b9 ;
}
button
{
  border: none;
  transition: 0.5s;
}
button:hover
{
  box-shadow: inset 7rem 0 0 0 #2943b9 ;
}
  
  .grid-container {
    display: grid;
    height: 100vh;
    margin-bottom: 20vh;
    grid-template-columns: 10% 40% 40% 10%;
    grid-template-areas: 
    '... logo logo ...'
    '... titlu titlu ...'
    '... tel tel ...'
    '... tel tel ...'
    '... poza poza ...'
    '... btn btn ...'
    ;
  }
  .header
  {
    display: flex;
    justify-content: center;
    text-align: center;
    align-content: center;
    flex-direction: column;
    color: white;
    grid-area: titlu;
  }
  .header > h1 
  {
    margin-bottom: 15px;
    font-size: 3rem;
    border-bottom: 1px solid white;
    width: 30%;
    align-self: center;
  }
  .header > h2
  {
    margin-bottom: 35px;
    font-size: 3rem;
  }
  .menu
  {
    height: 100px;
    grid-area: logo;
    display: flex;
    justify-content: space-between;
  }
  .logo
  {
    position: absolute;
    left: 10%;
    width: 100px;
    height: 100px;
  }
  .bar > ul
  {
      display: flex;
      flex-direction: row;
      text-align: center;
      justify-content: center;
      align-items: center;
      height: 100%;
  }
  .bar > ul >li
  {
      list-style: none;
      text-decoration: none;
      text-transform: uppercase;
      margin-left: 30px;
      margin-right: 30px;
      transition: 0.5s;
  }
  .bar > ul > li > a
  {
      color: white;
      position: relative;
      display: block;
      padding: 10px 20px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.5s;
  
  }
  .bar > ul > li > a:hover
  {
      color: black;
  }
  .bar > ul > li > a::before
  {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-top: 1px solid white;
      border-bottom: 1px solid white;
      transform: scaleY(0);
      opacity: 0;
      transition: 0.5s;
      z-index: -1;
  }
  
  .bar > ul > li > a:hover::before
  {
      transform: scaleY(1);
      opacity: 1;
  }
  
  .bar > ul > li > a::after
  {
      content: '';
      position: absolute;
      top: 1px;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: white;
      transform: scale(0);
      transition: 0.5s;
      z-index: -1;
  }
  
  .bar > ul > li > a:hover::after
  {
      color: black;
      transform: scale(1);
      opacity: 1;
  }
.btndelete
{
  background-color: black;
  color: white;
  width: 100px;
  height: 50px;
}
  .invisible
  {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  
    border: 1px solid black;
    border-radius: 4px;
    display: flex;
    flex-direction: column-reverse;
    align-content: center;
    text-align: center;
    justify-content: center;
    position: absolute;
    top: 40%;
    left: 30%;
    background-color: #59CD64;
    height: 20%;
    width: 40%;
  }
  @media only screen and (max-width: 1060px)
  {
    .header > h1
    {
      font-size: 2rem;
      width: 35%;
    }
    .header > h2
  {
    margin-bottom: 35px;
    font-size: 2rem;
  }
  }

  @media only screen and (max-width: 700px)
  {
    .invisible
  {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border: 1px solid black;
    border-radius: 4px;
    display: flex;
    flex-direction: column-reverse;
    align-content: center;
    text-align: center;
    justify-content: center;
    position: absolute;
    top: 25%;
    left: 20%;
    background-color: #59CD64;
    height: 20%;
    width: 60%;
    font-size: 10px;
  }
  .btndelete
  {
    height: 200%;
    width: 30%;
  }
  .header > h1
  {
    font-size: 2rem;
    width: 80%;
  }

    .bar
    {
      width: 80%;
      font-size: 15px;
    }
    .bar > ul 
    {
      width: 100%;
    }
    .bar > ul >li
    {
        margin-left: 5px;
        margin-right: 5px;
    }
    .bar > ul > li > a 
    {
      padding: 0px;
    }
    .logo
    {
      width: 80px;
      height: 100px;
    }
    .grid-container {
      height: 100vh;
      grid-template-areas: 
      '... logo logo ...'
      '... titlu titlu ...'
      '... tel tel ...'
      '... tel tel ...'
      '... poza poza ...'
      '... btn btn ...'
      ;
    }
    
    .input
    {
      height: 30vh;
      border-top-right-radius: 4px;
    }
    h1
    {
      margin-bottom: 10px;
    }
    .input > div > input
    {
      font-size: 1rem;
      width: 70%;
      height: 20%;
    }
    .input > div > input + input
    {
      margin-top: 20px;
    }
    .buton
    {
      margin-bottom: 30vh;
    }
    .mesaj
    {
      border-top-right-radius: 0px;
      height: 20vh;
      align-items: flex-start;
    }
    .mesaj > textarea
    {
      font-size: 1rem;
    }
  } 