body {
    font-family: "Montserrat", sans-serif;
    min-height: 100vh;
    background-image: url("CleanShineNameD.jpeg");
    background-size: cover;          /* laba kvalitāte, aizpilda ekrānu */
    background-position: center;     /* vienmēr centrā */
    background-repeat: no-repeat;    /* neatkārtojas */
    background-attachment: fixed;
}
  
  p {
    color: white;
    font-weight: 400;
  }

  #page-logo a {
    color: #fff;
  }
  
  header {
    position: static;
  }
  
  header a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 12px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
  }
  
  header nav a:hover {
    color: #fff;
    background-color: #1da1fd;
  }
  
  main ul {
    width: 1200px;
    margin: 0 auto 48px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 20px;
  }
  
  li:nth-of-type(3) {
    grid-column: 1 / span 2;
  }
  
  main li {
    display: flex;
    background-color: #1da1fd;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    overflow: hidden;
  }
  
  main h2{
    color: #fff;
  }

  main li img {
    width: 300px;
    height: 280px;
    object-fit: cover;
  }
  
  .item-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .item-content h2 {
    margin: 0;
  }

  span {
    color: #1da1fd;
}

h3 {
    color: white;
    text-decoration: underline;
}

.contactus {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
  
.contactus h2 {
    margin: 0;
}

.contactus a {
    text-align: right;
    text-decoration: none;
    background-color: #0d3b66;
    padding: 12px 40px;
    color: #1da1fd;
    font-size: 24px;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 4px 4px 8px rgb(68, 67, 67);
    text-transform: uppercase;
}
