p {
    font-size: 16px;
  }
  
  @media (max-width: 600px) {
    p {
      font-size: 14px;
    }
  }
  
  @media (max-width: 400px) {
    p {
      font-size: 12px;
    }
  }

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 24px;
    color: #047057;
    text-align: center;
    margin-top: 50px;
}

.content{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 5rem;
}

.content-text {
  text-align: justify;
  float: left;
  width: 50%;
}

.grey {
color: #8e9fa1;
opacity: 0.8;
}

.arrow {
position: fixed;
top: 120px;
width: 0; 
height: 0;
cursor: pointer;
opacity: 0.7;
}

.left-arrow { 
left: 5px;
border-top: 30px solid transparent;
border-right: 35px solid #047057; 
border-bottom: 30px solid transparent;
z-index: 1;
}

.right-arrow {
right: 5px;
border-top: 30px solid transparent;
border-left: 35px solid #047057; 
border-bottom: 30px solid transparent;
z-index: 1;
}

.left-arrow:hover, .right-arrow:hover {
opacity: 0.9;
}

.transition {
-webkit-transition: 3s;
-moz-transition: 3s;
-ms-transition: 3s;
-o-transition: 3s;
transition: 3s;
}

.content-left {
  transform: translate(33%, 0);
}

.content-right {
  transform: translate(-33%, 0);
}

