@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    MARGIN:0;
    PADDING:0;
    box-sizing: 0;
}
html,body{
    line-height:1.4;
    font-weight:300;
    font-family: "Roboto", sans-serif;
}
.hero_section{
    background-image: url(images/port.jpg);
    min-height: 100vh;
    position:relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.text_container{
    color:#000000;
    max-width:10000px;
    margin: 0 auto;
    padding-top: 64px;
    padding-left: 65px;
}
.lg_text{
    font-size: 72px ;
}
.name{
    font-size: 40px;
}
.black_box{
    padding:20px;
    background-color: #000000;
}
.black_box h2{
    color: white;
    font-weight: 300;
    font-size: 72px;
    text-align: center;
}
.u{
    font-weight: 400;
    font-size: 96px;
}
.back{
  margin-top: ;
  background-color: rgb(177, 6, 6);
}
.work {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    padding: 0px 100px;
    margin: 50px auto;
    padding-bottom: 50px;
    padding-top: 50px;
    background-color:rgb(193, 193, 193);
  }
  .grid_item {
    display: flex;
    justify-content: center;
    align-items:first baseline;
    max-height: fit-content;
  }
  .card {
    max-width: 420px;
    height: 500px;
    border-radius:10px;
    box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.1);
    transition: 0.2s ease-in-out;
    background-color: white;
  }
.card,img{
      width: 100%;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
}
.card:hover {
    transform: scale(1.2);
    box-shadow: 3px 5px 5px rgba(1, 1, 1, 0.4);
    transition: 0.4s ease-in-out;
    color:rgb(88, 47, 44);
    
  }
  .card_content,.card {
    padding: 1px;
  }
  .card_content h3 {
    margin-bottom: 10px;
  }
  .bottom_section {
    display: flex;
    padding-right: 0px;
  }
  .contact {
    background-color: #515603;
  }
  .about {
    background-color: #722300;
  }
  
  .contact,
  .about{
    min-height: 300px;
    min-width: 500px;
    padding: 32px;
    color: white;
    grid-template-rows: repeat(auto-fit, minmax(320px, 1fr));
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .about h2,
  .contact h2 {
    font-size: 64px;
    font-weight: 300;
  }
  .about p,
  .contact p {
    margin-bottom: 20px;
  }
  .projects{
    background-color: #515603;
    min-height: 300px;
    min-width: 500px;
    padding: 32px;
    color: white;
    grid-template-rows: repeat(auto-fit, minmax(320px, 1fr));
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .projects h2{
    font-size: 64px;
    font-weight: 300;
  }
  .contact a,.projects a{
    color: white;
    font-weight: 500;
  }
  footer {
    text-align: center;
    /* text-transform: uppercase; */
    background-color: #000;
    padding: 20px;
    color: white;
  }
  @media (max-width: 786px) {
    .hero_section {
      min-height: 50vh;
    }
    .text_container {
      padding: 10px 0;
      text-align: center;
    }
    .lg_text {
      font-size: 32px;
    }
    .black_box h2 {
      font-size: 24px;
    }
    .black_box h2 span {
      font-weight: 400;
      font-size: 32px;
    }
    .bottom_section {
      flex-direction: column;
    }
    h1 {
      font-size: 32px;
    }
    .about h2,
    .contact h2 {
      font-size: 32px;
    }
  }