:root {

    /* Primary Colors */
    --blue-color-600: hsl(185, 75%, 39%);
    --navy-color-950: hsl(229, 23%, 23%);
    --gray-color-500: hsl(227, 10%, 46%);

    /* Neutral Colors */
    --gray-color-100: hsl(225, 10%, 92%);
    --white-color: hsl(0, 0%, 100%);
}


* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    font-family: "Kumbh Sans", sans-serif;
    background-color: var(--blue-color-600);
    color: var(--gray-color-500);
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.2px;
    font-weight: 400;
    height: 100%;
    overflow: hidden;
}

.full-screen {
    width: 100%;
    height: 100%;
    position: relative;
}

.full-screen::before {
    content: "";
    position: absolute;
    background: url(../images/bg-pattern-top.svg);
    background-size: cover;
    top: -600px;
    left: -300px;
    width: 1000px;
    height: 1000px;
    z-index: -300;
}

.full-screen::after {
    content: "";
    position: absolute;
    background: url(../images/bg-pattern-bottom.svg);
    background-size: cover;
    top: 400px;
    right: -300px;
    width: 1000px;
    height: 1000px;
    z-index: -300;
}

@media (max-width: 787px) {
    .full-screen::before {
        content: "";
        position: absolute;
        background: url(../images/bg-pattern-top.svg);
        background-size: cover;
        top: -250px;
        left: -250px;
        width: 500px;
        height: 500px;
    }

    .full-screen::after {
        content: "";
        position: absolute;
        background: url(../images/bg-pattern-bottom.svg);
        background-size: cover;
        top: 400px;
        right: -300px;
        width: 500px;
        height: 500px;
    }
}

.center-wrapper {
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    /* full viewport height */
}

.container {
    width: calc(100%/4);
    background-color: var(--white-color);
    box-shadow: 0 14px 18px -16px var(--gray-color-500);
    display: flex;
    overflow: hidden;
    justify-content: space-between;
    flex-direction: column;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

@media (max-width: 787px) {
    .container {
        width: calc(100% - 48px);
        margin: 100px auto;
    }
}

.container img {
    width: 100%;
}

.container .content {
    background-color: var(--white-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.container .content .image {
    width: 100px;
    margin-top: -50px;
    background-size: cover;
    border: 5px solid var(--white-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.container .content .info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.container .content .info .title {
    display: flex;
    gap: 10px;
    align-items: center;
    /*font-size: 18px;*/
    font-weight: 700;
}

.container .content .info .title .name {
    color: var(--navy-color-950);
    font-weight: 700;
    font-size: 18px;
}

.container .content .social-media {
    border-top: 1px solid var(--gray-color-100);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 60px 30px;
}

.container .content .social-media .card {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}

.container .content .social-media .card .number {
    color: var(--navy-color-950);
    font-weight: 700;
    font-size: 18px;
}

.attribution {
    text-align: center;
    margin: -50px 0;
    position: relative;
    z-index: 10;
}

.attribution a {
    color: var(--navy-color-950);
    font-style: italic;
    font-weight: 700;
    text-decoration: none;
}