/*base*/
.content{
  display:grid;
  grid-template-columns: minmax(35ch, 80ch) 1fr minmax(0, 500px) ;
  grid-template-rows: minmax(min-content, 40vh) auto 1fr min-content;
  margin-top: 70px;
  height: calc(100%-70px);
  width: 100%;
}
body {

}

/*layout*/

#girl{
  object-fit: cover;
  width: 100%;
  height: auto;
  max-height: 600px;
}
#tagline {
  column-count: 2;
  column-width: 60ch;
  column-fill: balance;
  grid-column: 1/4;
  grid-row: 1/2;
}
#text{
  display: block;
  margin-top: auto;
  margin-bottom: auto;
  min-height: 200px;
  margin: 60px 10px 40px 10px;
}

#professional_summary{
  grid-column:1/2;
  grid-row:2/3;
  text-align: center;
  padding: 0 10px;
  margin: 60px 10px 40px 10px;
}
/*desktop widget*/
#w7f1ceebfb246fd2fc169e170dc54b530{
  grid-column:3/4;
  grid-row:2/3;
  text-align: center;
  margin: auto;
  min-width: 250px;
  /*display: block;*/
}
#Contact_form {
  margin: 50px 30px;
  grid-row:4/5;
  grid-column:1/4;
  /*background-color: #E8E7EC;
  opacity:0.8;*/
  text-align: center;
  overflow: visible;
}
input {
    padding:5px;
    border:2px solid #ccc;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    width: 25vw;
}

input:focus {
    border-color:#EC7C79;
}

input[type=submit] {
    cursor:pointer;
    margin: 10px;
}

  /*mobile widget*/
#we3ac866417bb684904a15c9cccab2c11{
  display:none;
}


@media screen and (max-width: 800px){
/*desktop widget*/
 #w7f1ceebfb246fd2fc169e170dc54b530{
    display:none;
  }
  /*mobile widget*/
  #we3ac866417bb684904a15c9cccab2c11{
    display: block;
    grid-row:3/4;
    grid-column:1/4;
    margin: 5vh auto;
  }
  #professional_summary{
    grid-column:1/4;
    grid-row:2/3;
  }
  #girl{
    max-height: 350px;
  }
}

@media screen and (max-width: 450px){
  #girl{
    max-width: 250px;
  }
  #professional_summary{
    margin: 5px;
  }
  #text{
    margin: 5px;
  }
  /*mobile widget*/
  #we3ac866417bb684904a15c9cccab2c11{
    margin: 5px;
  }
}
