* {
box-sizing: border-box;

}

body{
background-color: #1E1E1E;
font-family: 'Poppins';
margin: 0;

}

.row{
    display: flex;
    justify-content: center; 
    margin: 50px;
    height: 20%;
}


nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px 0px 0px;
    margin: 0px 80px 0px 60px;
}

section{
    margin: 0px 80px 0px 60px;
}


.row-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0px 160px 0px 130px;
    
}


/* Create four equal columns that floats next to each other */
.column {
    flex: 0 0 calc(25% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    background-color: #F1B2D8;
    color: #1E1E1E;
    animation: "animate__fadeIn";
    animation-duration: 4s;
    border-radius: 25px;
    height: 350px;
    float: left;
    width: 25%;
    transition: transform 0.3s ease;
}

.column:hover {
    transform: scale(1.1);
  }
  
  .column img {
    transition: transform 0.3s ease-in-out;
  }
  
  .column:hover img {
    transform: scale(1.1);
  }



.row:after {
    content: "";
    display: table;
    clear: both;
}


.column svg {
margin-bottom: 10px;
}

.column h2 {
margin: 0;
}

a {
color: inherit; /* Use the color of the parent element */
text-decoration: none; /* Removes underline */
cursor: pointer;
}

p,h1,h3.white-txt{
color: #FCF0EC;
}

h1{
    font-size: 30px;
}
p.box-txt{
color: #1E1E1E;
}


/* Responsive layout - makes the four columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
    width: 100%;
    }
}

.column h2 {
    font-size: 16px;
  }
  
  @media (min-width: 768px) {
    .column h2 {
      font-size: 20px;
    }
  }
  
  @media (min-width: 992px) {
    .column h2 {
      font-size: 24px;
    }
  }

