/* RESETS */
*, 
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
:root {
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #e5e5e5;
}

/* main container styles */
.container {
  max-width: 1200px;
  min-width: 300px;
  width: 100%;
  min-height: fit-content;
  margin-inline: auto;
  background-color: white;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 2rem;
}

.col-1, 
.col-2 {
  overflow: hidden;
}

/* column 1 styles */
.col-1 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* text container styles */
.text-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.text-container h1{
  font-weight: 500;
  font-size: 3rem;
}

.text-container p {
  font-size: 1.25rem;
  font-weight: 400;
  text-align: justify;
}

.text-container button {
  background-color: black;
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 24px;

  /* hover */
  &:hover {
    background-color: blue;
    cursor: pointer;
  }
}

/* icons container styles */
.icons-container {
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
  gap: 1rem;
  /* background-color: red; */

  /* image */
  img {
    width: 100%;
    height: auto;
  }
}

/* list container styles */
.list-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* border: 1px solid black; */
  padding: 1rem;
  /* border-radius: 10px; */
}

/* column 2 styles */
.col-2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  img {
    width: 100%;
    height: auto;
  }
}

.image-col1,
.image-col2 {
  display: flex;
  gap: 1rem;
}

/* Responsiveness */
/* smaller tablets and big screen phones */
@media (min-width: 480px) {
  .text-container {
    gap: 1.5rem;
  }
}

/* larger tablets and desktops */
@media (min-width: 768px) {
  .container {
    flex-direction: row;
    justify-content: space-between;
    height: 100vh;
    overflow-y: scroll;
    /* gap: 2rem; */
  }

  .col-1, 
  .col-2 {
    width: 47%;
  }

  .text-container {
    gap: 2rem;
  }

  .col-2 {
    flex-direction: row;
    gap: 1rem;
  }

  .image-col1,
  .image-col2 {
    flex-direction: column;
    img {
      width: 90%;
    }
  }

  .image-col1 {
    align-items: flex-end;
  }

  .image-col2 {
    justify-content: flex-end;
  }

}