.index {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: stretch;
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 900;
}

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


/* header */

.header-section {
  background-color: #ffdae3;
  padding-bottom: 22px;
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  color: #ffdae3;
  font-weight: 900;
}

.header-inner {
  background-color: #ff95ad;
  width: 100%;
  padding: 0 1px 30px;
}

.header-content {
  background-color: #ff4570;
  display: flex;
  padding-top: 20px;
  padding-left:60px;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-between;
}

.header-title {
  font-size: 80px;
  margin: 0;
  padding-right:30px;
  padding-top: 30px;
}

.header-subtitle {
  z-index: 10;
  align-self: start;
  margin-top: 13px;
  padding-top: 50px;
  padding-right: 100px;
  font-size: 40px;
  text-align: center;
}

.header-subtitle:hover {
  text-shadow: none;
  color: #ff95ad;
  transition: 200ms;
}

.about-me-page {
    text-decoration: none;
    color: inherit;
}

.home {
  text-decoration: none;
  color: inherit;
}

/* header */


.container {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px;
margin-right: 20%;
margin-left: 20%;
margin-top: 3%;
margin-bottom: 10%;
}

.box {
    width: 100%;
    display: inline-block;
    position: relative;
}

img {
width: 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color:#fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    text-align: center;
    font-weight: bold;
    transition: opacity 0.3s ease-in-out;
}

.overlay {
    color: white;
    transition: background-color 0.2s ease-in-out;
}

.box:hover .overlay {
    background: #9747ff;
    opacity: 1;
}

/* footer */

.contact-footer {
  background-color: #ff95ad;
  margin-top: 56px;
  width: 100%;
  padding: 36px 70px 102px;
}

.contact-info {
  font-size: 25px;
  color: #fff;
  font-weight: 600;
  line-height: 45px;
  font-style: normal;
}

/* footer */
