body {
  margin: 0;
  padding: 0;
}

.container-background {
  margin: 0;
  background-image: url("./background.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: whitesmoke;
}

.grid-container {
  display: flex;
  /* grid-template-areas: "h h h" "p b b ";
  grid-gap: 20px; */
  background: #333333;
  color: white;
  height: 100vh;
  justify-content: space-between;
  align-items: center


}

.profile-pic {
  /* display: flex; */
  /* grid-area: p; */
  height: 30%;
  width: auto;
  box-shadow:3px 3px #222222;
  /* margin-left: 25px; */
  align-items: center;
  justify-content: center;
  margin: 10px;
  /* margin-right: 15px; */
  /* border-radius: 100px; */

}

.brand-statement {
  margin: 10px;
  font-family: "Montserrat",
  sans-serif;
   font-size: 20px;
   flex-direction: column;


}

.link {
  background: transparent;
  border: #025b96 1px solid;
  font-size: 15px;
  padding: 10px;
  margin: 18px 25px;
  font-family: "Montserrat", sans-serif;
  color: #025b96;
  text-decoration: none;
}
.link:hover {
  color: #0083db;
  border: #0083db 1px solid;
}

.name {
  font-family: "Alegreya Sans", sans-serif;
  font-size: 50px;
  margin: 6px 0;
}

hr {
  border-color: grey;
  width: 10%;
}

.subtitle {
  font-family: "Montserrat", sans-serif;
  color: grey;
}
a {
  text-decoration: none;
}
.sticky {
  display: flex;
  justify-content: center;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  margin: 0;
  padding: 30px 0;
}

#header {
  display: flex;
  flex-direction: row;
  z-index: 4;
}

h2.card-title{
  font-size: 25px;
}

#portfolio {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  max-width: 100%;
  text-align: center;
  flex-wrap: wrap;

}

.card{
  justify-self: center;
  margin: 100px 50px;
  max-height: 500px;

}


.section-title {
  display: flex;
  justify-content: center;
  grid-area: h;
  padding: 25px 0;
  margin-top: 30px;
}

#contact{
  display: flex;
  flex-direction: column;
  background: black;
  height: 100vh;
  color: white;
  justify-content: center;
   align-items: center;
}

form{
  display: flex;
  flex-direction: column
}
input{
  /* margin-top: 40px; */
  height: 60px;
  font-size: 20px;
   font-family: "Montserrat",
   sans-serif;
}

label{
  margin-top: 30px;
}
textarea{
   margin: 20px;
   height: 60px;
   font-size: 15px;
    font-family: "Montserrat",
    sans-serif;
}

#submit{
  width: 95px;
  justify-self: center;
  height: 50px;
  text-align: center;
  background: transparent;
   color: #025b96;
   border: 1px solid #025b96;
}

#button{
   margin-top: 20px;

}

#submit:hover{
    color: #0083db;
    border: #0083db 1px solid;
}

.btn{
  background: navy;
  border-color: navy;
}

@media screen and (max-width: 1000px){
  .body-container{
    overflow-x: hidden;
    /* width:100%; */

  }
.sticky{
  width: 100%;
  padding: 15px;
  position: fixed;
}
  #portfolio{
 display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  }
  .subtitle{
    font-size: 10px;
  }
  .portfolio{
    max-width: 60%;
  }

  #contact{
    height: 150vh;
  }
  .grid-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 130vh;
  }
  .brand-statement{
    display: flex;
   text-align: center;
   margin: 0 25px;
    font-size: 10px;
  }

  input{
    width: 60vw;
    font-size: 18px;
  }
  textarea{
    width: 60vw;
  }

  .link{
   margin: 18px 15px;
   padding: 10px;
   font-size: 10px;
  }
  .container-background{
    width: 100vw;
    background-image: url('./background-mobile.jpg');
    text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: initial;
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: whitesmoke;
  }

  #contact-header{
    margin-top: 10%;
  }
}
