﻿* {
    box-sizing: border-box;
    
  }
  

  
  .body-c {
    background: hsl(0, 0%, 100%);
    font-family: "Space Grotesk", sans-serif;
    color: hsl(0, 0%, 7%);
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: center;
  }

  .body-c h3 {
    font-size: 18px;
    font-weight: 700;
  }
  
  .body-c p {
    font-size: 12px;
    line-height: 1.3;
    font-weight: 300;
    color:  hsl(0, 0%, 30%);
  }
  
  .description {
    white-space: wrap;
  }
  
  .body-c a {
    text-decoration: none;
    color: inherit;
  }
  
  .wrap {
    display: flex;
    justify-items:space-between;
    align-items: stretch;
    width: 100%;
    height:auto;
    gap: 24px;
    padding: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  
  .box {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    position: relative;
    padding: 24px;
    background: #fff;
    align-items: flex-start;
    justify-content: center;
    border:2px solid rgb(75, 73, 73);
    border-radius: 20px;
    box-shadow: 0 20px 40px 2px rgb(0, 0, 0);
  min-height:350px;
    margin-top: 20px;  }
 
  .box-top {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 12px;
    align-content: center;
    text-align: center;
    justify-content: center;
        
  }
  
  .box-top:hover {
    color:rgb(59, 9, 124);
  }
  .box-image {
    width: 100%;
    height: 300px;
    object-fit: cover;

    position:relative;
    object-position: 50% 20%;
     
      }
      .box-image:hover {
        scale:1.01;
       
          
          }
   

  .title-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .box-title {
    border-left: 3px solid var(--purple);
    padding-left: 12px;
  }
  
  .user-follow-info {
    color: hsl(0, 0%, 60%);
  }
  
  .button {
    display: block;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: auto;
    padding: 16px;
    color: #000;
    background: transparent;
    box-shadow: 0px 0px 0px 1px black inset;
    transition: background 0.4s ease;
  }
  
  .button:hover {
    background: var(--purple);
  }
  
  .fill-one {
    background: var(--light-bg);
  }
  
  .fill-two {
    background: var(--pink);
  }
  
  /* RESPONSIVE QUERIES */
  
  @media (min-width: 320px) {
    .title-flex {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: start;
      
    }
    .user-follow-info {
      margin-top: 6px;
    }
  }
  
  @media (min-width: 460px) {
    .title-flex {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: start;
      
    }
    .user-follow-info {
      margin-top: 6px;
    }
  }
  
  @media (min-width: 640px) {
    .box {
      flex-basis: calc(50% - 12px);
    }
    .title-flex {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: start;
      
    }
    .user-follow-info {
      margin-top: 6px;
    }
  }
  
  @media (min-width: 840px) {
    .title-flex {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: start;
      
    }
    .user-follow-info {
      margin-top: 6px;
    }
  }
  
  @media (min-width: 1024px) {
    .box {
      flex-basis: calc(33.3% - 16px);
    }
    .title-flex {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: start;
      
    }
    .user-follow-info {
      margin-top: 6px;
    }
  }
  
  @media (min-width: 1100px) {
    .box {
      flex-basis: calc(25% - 18px);
      
    }
  }
  