@charset "UTF-8";

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

* {
    font-family: 'Karla', sans-serif;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}


body {
    height: 100vh;
    width: 100vw;
    font-size: clamp(5px, 13px, 15px);
    background-color: hsl(204, 43%, 93%);
    display: grid;
    justify-content: center;
    align-items: center;
}

section {
    background-image: linear-gradient(to bottom, white 70%, hsl(179, 61%, 48%));
    background-color: white;
    font-size: clamp(5px, 13px, 15px);
    height: 650px;
    max-width: 350px;
    box-shadow: 0px 5px 10px hsl(218, 22%, 67%);
    border-radius: 5px;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: 1fr;
    grid-template-areas: 
    "join"
    "subs"
    "why"
    ;
}

section > div h2, h3, p {
    padding-bottom: 15px;
    line-height: 20px;
}

div#join {
    grid-area: join;
    padding: 25px;
    margin-top: 10px;
}

div#join > h2 {
    color: rgb(3, 192, 192);
    text-shadow: 0px 0px 0.5px darkcyan;
}

div#join > h3 {
    color: hsl(71, 73%, 54%);
    text-shadow: 0px 0px 0.5px hsl(71, 73%, 54%);
}

div#join > p {
    color: hsl(218, 22%, 67%);
}

div#sign {
    grid-area: subs;
    padding: 25px;
    background-color: hsl(179, 92%, 36%);
    color: white;
}

div#sign > p#value {
    line-height: 25px;
}

div#sign > p#value > strong {
    font-size: 2em;
}

div#sign > p#value > small {
    font-size: 1.1em;
    color: hsla(0, 0%, 100%, 0.6);
}

div#sign > a {
    display: block;
    background-color: hsl(71, 73%, 54%);
    height: 50px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px darkcyan;
    text-decoration: none;
    color: white;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
}

div#sign > a:hover {
    background-color: hsl(71, 61%, 50%);
}

div#why {
    grid-area: why;
    padding: 25px;
    background-color: hsl(179, 61%, 48%);
    color: white;
    display: block;
    border-radius: 0px 0px 5px 5px;
    margin-bottom: 10px;
    
}

div#why > p > small {
    color: hsla(0, 0%, 100%, 0.7);
}
