@import url("https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap");

/* ## Colors */
:root {
  /* ### Primary */

  --Cyan: hsl(179, 62%, 43%);
  --Cyan2: hsl(179, 43%, 55%);
  --BrightYellow: hsl(71, 73%, 54%);

  /* ### Neutral */

  --Light-Gray: hsl(204, 43%, 93%);
  --Grayish-Blue: hsl(218, 22%, 67%);
  --font-family: "Karla", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  
}

body {
  background-color: var(--Light-Gray);
  font-family: var(--font-family);
  font-size: 16px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  line-height: 1.6;
}

.container-cards {
  display: flex;
  flex-direction: column;
  -moz-box-shadow-bottom: 4px 4px 4px rgb(255, 255, 255);
  -webkit-box-shadow-bottom: 4px 4px 4px rgb(250, 245, 245);
  box-shadow: 4px 4px 4px rgb(204, 196, 196);
  border-radius: 10px;
  margin: 60px;
}

.one {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: white;
  padding: 30px;
  color: var(--Grayish-Blue);
}
.cyanTXT {
  color: var(--Cyan);
  font-weight: 700;
  font-size: larger;
}
.yellowTXT {
  color: var(--BrightYellow);
  padding-top: 10px;
  font-weight: 700;
  font-size: larger;
}

.one p {
  font-size: large;
}

.two {
  color: var(--Light-Gray);
}

.box-one {
  padding: 30px;
  background-color: var(--Cyan);  
}
.small {
  font-size: 12px;
  font-weight: 400;
}
.box-one h1 {
  font-size: large;
}


button {
  background-color: var(--BrightYellow);
  display: inline-block;
  text-align: center;
  color: #fff;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  padding: 0.5rem 1.25rem;
  margin-top: 30px;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0.1rem 0.1rem 0.9rem 0.2rem rgba(92, 90, 90, 0.25);
}

.box-two {
  padding: 30px;
  background-color: var(--Cyan2);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  line-height: 0;
}

.box-two h1{
  font-size: larger;
}

.box-two p {
  padding-top: 10px;
  line-height: 1.1;
  font-size: large;
}

.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}

@media (width > 600px) {
 
  
    .two {
    display: inline-flex;
    align-items: stretch;
    
  }
  .box-one {
    width: 50%;
    border-bottom-left-radius: 10px;
  }
  .box-two {
    width: 50%;
    border-bottom-left-radius: 0;
    line-height: 0%;
  }
  .box-two h1 {
    margin-top: 20px;
  }
  .box-two p {
    padding-top: 20px;
  }
}
