#head {
    width: 100%;
    background-color: #cae6d3;
    padding: 10px;
    text-align: center;
}

#landing{
    text-align: center;
    color: #759772;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: bolder;
    margin-bottom: 40px;
}

#trusted{
    font-size: 50px;
    color: black;
}

#welcome{
    margin-top: -15px;
}

#welcome-paragraph{
    margin-top: -10px;
}

.buttons{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 15px;
    margin-top: 10px;
    color: white;
    background-color: #98b195;
}


#services-layout {
    background-color: #212121;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px; /* spacing between items/dividers */
    text-align: center;
    color: white;
    margin-left: auto;
    font-weight: bolder;
    font-size: larger;
}

.service-item {
  flex: 1 1 200px; /* grow/shrink, min width */
  max-width: 250px;
}


@media (max-width: 768px) {
  #services-layout {
    flex-direction: column;
  }

  #contact-heading {
        font-size: 36px;
    }

    .service-item {
        flex: 1 1 100%;
    }
}

#services {
    background-color: #212121;
    padding: 30px 10px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

#services-title{
    margin-top: 15px;
    font-size: 56px;
    background-color: #212121;
}

#no-fix{
    margin-top: 30px;
    margin-bottom: 30px;
}

.service-item {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
}

#troubleshoot-image{
    height: 79px;
    width: 69px;
}

#upgrade-image{
    height: 69px;
}

#repair-image{
    height: 69px;
}

#contact-layout {
    background-color: white;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 16px;
    padding: 30px 10px;
}

#contact-heading{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 50px;
    margin-top: 4px;
    margin-bottom: 25px;
}

h4{
    font-size: smaller;
    color: #759772;
}

#no-fix{
    text-align: center;
    color: #759772;
    font-size: 40px;
    margin-left: 15px;
}

#contact-divider{
    background-color: #759772;
    width: 100%;
    height: 2px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.contact-details{
    color: #759772;
    padding-bottom: -10px;
    font-size: 30px;
    margin-bottom: -10px;
    margin-top: 15px;
}


* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
}