.attribution { 
    font-size: 11px;
     text-align: center;
    }
    .attribution a { 
        color: hsl(228, 45%, 44%); 
    }
    body {
        background-color:   hsl(204, 43%, 93%);
        margin: 0;
        font-size: 1rem;
        font-family: 'Karla', sans-serif;
        font-weight: 400;
    }
    .container {
        height: 100%;
        display: flex;
        justify-content: center;
        margin: 8rem;
        align-items: center;
    }
    .box1 {
        background-color: white;
        padding: 2rem;
        grid-column: span 2;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
    }
    .box1 h1{
        color:  hsl(179, 62%, 43%);
    }
    .box1 p{
        color: var(--clr-grayish-blue);
        line-height: 1.5;
        opacity: 50%;
    }
    .box1 h3{
        color: hsl(71, 73%, 54%);
    }
    .boxes {
        box-shadow: 0 0 1rem var(--clr-grayish-blue);
        overflow: hidden;
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 40rem;
    }
      
    .box1-2 {
        grid-template-rows: 1;
        background-color:  hsl(179, 62%, 43%);
        height: 100%;
        padding-top: 2rem;
        border-bottom-left-radius: 10px;
      }
      .box2 h3{
        padding-left: 1.5rem;
        margin-bottom: 0;
        color: white;
      }
      .prices {
        display: flex;
        padding-left: 1.5rem;
      }
      .prices h1{
        color: white;
        font-size: 30px;
      }
      .prices p{
        margin-top: 2rem;
        padding-left: 1rem;
        opacity: 60%;
        color: hsl(204, 43%, 93%);
      }
      .signUp{
        padding-left: 1.5rem;
        margin-top: -30px;
      }
      .signUp p{
        color: hsl(204, 43%, 93%);
      }
      .signUp button{
        width: 34vh;
        height: 6vh;
        background-color: hsl(71, 73%, 54%);
        color: white;
        font-weight: 700;
        font-size: 15px;
        cursor: pointer;
        border-radius: 5px;
        margin-bottom: 2rem;
        border-color: transparent;
      }
      .signUp button a{
        color: white;
        text-decoration: none;
      }
      .signUp button a:hover{
        text-decoration: underline;
      }
      
    .box3 {
        background-color: hsla(179, 62%, 43%, 0.591);
        padding: 2rem 2rem;
        border-bottom-right-radius: 10px;
    }
    .box3 h3{
        color: white;
    }
    .box3 ul{
        color: hsl(204, 43%, 93%);
        list-style-type: none;
        margin: 0;
        padding: 0;
    }
    @media screen and (max-width: 700px) {
        .boxes {
          grid-template-columns: 1fr;
        }
      }
      
    @media screen and (max-width: 700px) {
        .container {
            margin: 3rem;
        }
          
        .boxes .box1 {
            grid-column: 1/3;
        }
        .boxes .box1-2{
           border-radius: 0%;
        }
        button {
            
        }
        .boxes .box3{
            grid-column: 1/3;
            margin-top: 1.9rem;
        }
    }