.left-section {
  background-color: #3A4A46;

  position: fixed;
  padding: 0;
  margin: 0;

  top: 0;
  left: 0; 

  width: 14%;
  height: 100%;
}

.right-section {
  background-color: #3A4A46;
  
  position: fixed;
  padding: 0;
  margin: 0;

  top: 0;
  right: 0; 

  width: 14%;
  height: 100%;
}

.middle-section {
  background-color: #607C76;

  display: grid;
  grid-template-rows: auto 4fr 1fr 8fr 2fr;

  position: fixed;
  padding: 0;
  margin: 0;

  top: 0;
  left: 14%;

  width: 72%;
  height: 100%;
}

.top {
    background-color: pink;
    height: 25vh;
}

.top-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title-text {
    font-family: "Fredoka";
    text-align: center;
    font-size: 80px;
    font-weight: bold;
    color: white;

    text-shadow: 4px 0 black,
    -4px 0 black, 
    0 4px black, 
    0 -4px black,

    3px 3px black,
    -3px 3px black,
    -3px -3px black,
    3px -3px black;
}

.contacts {
    margin-top: 2%;

    background-color: #41524E;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2%;
    padding: 2%;
}

.contact-button {
    flex: 0 1 5%;
    justify-content: center;
    align-items: center;
}

.contact-img {
    width: 100%;
    object-fit: contain;

    border-radius: 30%;
}

.home-button {
    position: absolute;

    padding: 1%;
    background-color: #4F6560;

    margin-top: 1%;
    margin-left: 1%;

    border-radius: 15px;
    border-style: solid;
    border-color: black;

    color: white;
    font-family: "Fredoka";
    font-size: 32px;
    text-decoration: none;

    transition: background-color 0.3s;
}

.home-button:hover {
    background-color: #40524d;
}

.home-button:active {
    transition: background-color 0s;
    background-color: #354440;
}

@media (width <= 980px) {
  .left-section {
    width: 0;
    height: 0;
  }

  .right-section {
    width: 0;
    height: 0;
  }

  .middle-section {
    left: 0;

    width: 100%;
  }

  .title-text {
    font-size: 72px;
  }

  .contact-button {
    flex: 0 1 8%;
  }

  .home-button {
      font-size: 64px;
      padding: 4%;
  }
}