@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

:root {
    --dark-cyan: hsl(185, 75%, 39%);
    --very-dark-blue: hsl(229, 23%, 23%);
    --dark-gray-blue: hsl(227, 10%, 46%);
    --dark-gray: hsl(0, 0%, 59%);
}

body {
    font-family: 'Kumbh Sans', sans-serif;
    background: linear-gradient(45deg, var(--dark-cyan), hsl(185, 75%, 36%));
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    position: absolute;
    z-index: 1;
    background: #fff;
    text-align: center;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 60px 40px rgba(0, 0, 0, 0.151);
}

.profile-pic {
    position: absolute;
    right: 7.5em;
    top: 5.6em;
    border: solid white 5px;
    border-radius: 100%;
}

h1 {
    font-size: 18px;
    margin-top: 3.8em;
    color: var(--very-dark-blue);
}

h1 span {
    color: var(--dark-gray);
}

p {
    color: var(--dark-gray-blue);
    margin-top: 0.4em;
    font-size: 14px;
}

ul {
    color: var(--very-dark-blue);
    font-size: 18px;
    display: flex;
    justify-content: space-around;
    border-top: solid rgba(0, 0, 0, 0.075) 2px;
    padding: 20px;
    margin-top: 1.5em;
}

ul li {
    font-weight: 700;
}

ul li span {
    font-size: 12px;
    display: block;
    letter-spacing: 1px;
    color: var(--dark-gray);
    margin-top: 0.3em;
}


.patterns {
    height: 100vh;
    overflow: hidden;
}

.pattern-top {
    transform: translate(-350px, -500px);
}

.pattern-bottom {
    transform: translate(600px, -610px)
}

.attribution {
    font-weight: bold;
    position: absolute;
    bottom: 20px;
    font-size: 11px;
    text-align: center;
}

.attribution a {
    color: hsl(0, 0%, 100%);
}