body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(173, 212, 199);
}

.container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;/
    grid-template-rows: 8fr 1fr;
    gap: 50px;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60%;
    max-width: 30%;
    padding: 20px;
    border-radius: 15px;
    background-color: white;
}

.button{
    width: 20px;
}
 input[type="submit"] {
    background-color: #b0f2ae;
 }
 label[for="firstname"]{
    color: #28eb22;
 }

 label[for="email"]{
    color:#28ce23
 }

 label[for="message"]{
    color: #28ca22;
 }

.Resume a{
    text-decoration: none;
    color: black;
}
.Resume{
    display: flex;
    flex-direction: column;
}
h1{
    color: #b0f2ae;
}

.attribution a{
    color: black;
    font-size: 15px;
}





@media (max-width: 1024px) {
  .container {
    max-width: 60%;
    gap: 30px;
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 8fr 1fr;
    max-width: 90%;
    height: auto;
    gap: 16px;
    padding: 10px;
  }
  body {
    padding: 10px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .container {
    
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 8fr 1fr;
    max-width: 100%;
    padding: 6px;
    gap: 8px;
    border-radius: 8px;
  }
  h1 {
    font-size: 1.2rem;
  }
  .Resume {
    font-size: 0.9rem;
  }
  .attribution a {
    font-size: 12px;
  }
}








