*{
    margin: 0;
    padding: 0;
}
body{
    background-color:var(--Verylightgray);
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 400;
    font-size: 1rem;
}

h2 {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
  }
:root{
 /* Primary */

--Brightorange: hsl(31, 77%, 52%);
--Darkcyan: hsl(184, 100%, 22%);
--Verydarkcyan: hsl(179, 100%, 13%);

 /* Neutral */

--Transparent-white: hsla(0, 0%, 100%, 0.75);
--Verylightgray: hsl(0, 0%, 95%);
}
main{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.card{
    height:350px;
    width: 160px;
    padding: 3rem;
}
.card .card-header{
    color: var(--Verylightgray);
}
.card .card-info{
    color: var(--Transparent-white);
}
.box1{
    background-color: var(--Brightorange);
    border-top-left-radius: 10px;  /* Top-left corner */
    border-bottom-left-radius: 10px;  /* Bottom-left corner */
}
.box2{
    background-color: var(--Darkcyan);
}
.box3{
    background-color: var(--Verydarkcyan);
    border-top-right-radius: 10px;  /* Top-left corner */
    border-bottom-right-radius: 10px;  /* Bottom-left corner */
}
.btn button{
    padding: 0.75rem;
    width: 120px;
    border: 2px solid white;
    border-radius: 1.5rem;
    cursor: pointer;
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 700;
}
.btn1{
    color: var(--Brightorange);
}
.btn2{
    color: var(--Darkcyan);
}
.btn3{
    color: var(--Verydarkcyan);
}
.cardgap{
 margin-top: 1.5rem;
}
.card-info{
    height: 190px;
    font-size: 0.75rem;
    line-height: 1.3rem;
}
.card-header {
    margin-bottom: 30px;  /* Adjust this value to control the space */
  }
  
  .btn1{
    border: 2px solid white;
    transition: 0.3s;
  }
  .btn1:hover {
    background-color: var(--Brightorange);
    color: white;
    border: 2px solid white;
  }

  .btn2{
    border: 2px solid white;
    transition: 0.3s;
  }
  .btn2:hover {
    background-color: var(--Darkcyan);
    color: white;
    border: 2px solid white;
  }
  .btn3{
    border: 2px solid white;
    transition: 0.3s;
  }
  .btn3:hover {
    background-color: var(--Verydarkcyan);
    color: white;
    border: 2px solid white;
  }

  @media screen and (max-width: 414px){
    main{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }
    .box1{
        background-color: var(--Brightorange);
        border-top-left-radius: 10px;  /* Top-left corner */
        border-top-right-radius: 10px;  /* Bottom-left corner */
        border-bottom-left-radius: 0;
    }
    .box2{
        background-color: var(--Darkcyan);
    }
    .box3{
        background-color: var(--Verydarkcyan);
        border-top-right-radius: 0;
        border-bottom-right-radius: 10px;  /* Top-left corner */
        border-bottom-left-radius: 10px;  /* Bottom-left corner */
    }
  }