:root {

    /* Primary Colors */
    --white-color: hsl(0, 0%, 100%);
    --slate-color-300: hsl(212, 45%, 89%);
    --slate-color-500: hsl(216, 15%, 48%);
    --slate-color-900: hsl(218, 44%, 22%);
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit/static/Outfit-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit/static/Outfit-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}


* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    font-family: "Outfit", sans-serif;
    background-color: var(--slate-color-300);
    color: var(--slate-color-900);
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.2px;
    font-weight: 400;
}

.center-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* full viewport height */
}

.container {
    width: calc(100%/5);
    padding: 16px 16px 40px;
    background-color: var(--white-color);
    box-shadow: 0 8px 18px -10px var(--slate-color-500);
    display: flex;
    gap: 24px;
    justify-content: space-between;
    flex-direction: column;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

@media (max-width: 787px) {
    .container {
        width: calc(100% - 60px);
    }
}

.container img {
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.container .content {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 12px;
}

.container .content .title {
    line-height: 1.2;
    font-size: 22px;
}

.container .content p {
    color: var(--slate-color-500);
}

.attribution {
    text-align: center;
    margin: 20px 0;
}

.attribution a {
    color: var(--slate-color-500);
    font-style: italic;
    font-weight: 700;
    text-decoration: none;
}