@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 18px;
}

main{
    background: hsl(185, 75%, 39%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-top{
    position: absolute;
    top: -80%;
    right: 50%;
}

.circle-bottom{
    position: absolute;
    bottom: -80%;
    left: 50%;
}

.card{
    z-index: 999;
    background: white;
    border-radius: .5em;
    text-align: center;
    box-shadow: 8px 8px 50px rgba(122, 122, 122, .5);
}

.card-bg-pattern img{
    border-radius: .5em .5em 0 0;
}

.primary{
    border-bottom: 1px solid hsl(0, 0%, 59%);
    padding-bottom: 1.5em;
}

.primary img{
    border-radius: 100%;
    border: 4px solid white;
    margin-top: -3em;
}

.primary h2{
    font-size: 1em;
    padding-top: 1em;
}

.primary p{
    font-size: .8em;
    padding-top: 1em;
}

.secondary{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1.5em 1em;
}

.secondary h2{
    font-size: 1em;
    padding-bottom: .5em;
}

.secondary p{
    font-size: .6em;
    letter-spacing: .1em;
}

span, p{
    font-weight: lighter;
    color: hsl(0, 0%, 59%);
}

.attribution{
    position: absolute;
    bottom: 2em;
}
