html, body {
  height: 100%;
}

body {
  background-color: #f9f2e4;
  display: flex;
  flex-direction: column;
}

.container--float {
  float: left;
  padding: 40px;
  width: 45%;
  background-color: #ffffff;
  height: 300px;
}

.container.disable-flex {
  display: block;
}
.container > div {
  position: relative;
  left: 180px;
  margin: 10px;
  padding: 20px;
  font-size: 22px;
}

/* Grid of boxes */
.container-grid {
  display: grid;
  grid-template-columns: repeat(2, 450px);
  column-gap: 400px;
  row-gap: 120px;
  justify-content: left;
  align-items: start;
  margin: 80px 60px;
}

.header-link {
  display: flex;
  gap: 40px;
  padding-left: 1050px;
  padding-top: 40px;
}
/* .header-link animation */
div {
  a {
    text-decoration: none;
    color: black;
  }

  font-family: Geo;
  .hover-underline {
    font-size: 29px;
    color: #000000;
    position: relative;
    display: inline-block;
  }

  .hover-underline::after,
  .hover-underline::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #555555, #686868);
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease-out;
  }

  .hover-underline:hover::after,
  .hover-underline:hover::before {
    transform: scaleX(1);
  }
}

.header-svg {
  position: relative;
  padding-left: 120px;
  padding-top: 40px;
}


.header-descriptor {
  position: relative;
  font-family: Kodchasan;
  font-size: 24px;
  margin-left: 160px;
  bottom: 5px;
  
}

.computer-svg {
  position: absolute;
  padding-left: 825px;
  top: 140px;

}

.star2-svg {
  position: absolute;
  padding-left: 1130px;
  padding-top: 30px;
}

.footerbox {
  margin-top: auto;
}


.svg-footer {
  display: flex;
  padding-top: 70px;
  overflow: hidden;
}

.footer {
  padding-top: 40px;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
}

