* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;

    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

html,
body {
    background-color: #f6f6f6;
}

.header {
    display: flex;
    flex-direction: row;
    width: 80%;
    margin: 60px auto;
    align-items: center;
    justify-content: space-between;

    img {
        width: 50px;
        height: 43px;
    }

    h1 {
        font-size: 48px;
        font-weight: bold;
        width: 350px;
        margin: 0 auto 0 20px;
    }

    span {
        display: block;
        width: 600px;
        font-size: 18px;
        line-height: 26px;
        margin-left: auto;

        strong {
            font-weight: bold;
            display: block;
        }
    }
}

.list {
    display: flex;
    flex-direction: row;
    width: 80%;
    margin: 60px auto;
    align-items: center;
    gap: 40px;

    .list-item {
        background-color: #fff;
        border-radius: 20px;
        padding: 20px;
        box-shadow: 9px 10px 15px rgba(0, 0, 0, 0.05);

        img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: black;
            margin-bottom: 50px;
            object-fit: scale-down;

            &.one {
                background-color: #2f3dff;
            }

            &.two {
                background-color: #ad00f2;
            }

            &.three {
                background-color: #741cf8;
            }

            &.four {
                background-color: #4400aa;
            }
        }

        h2 {
        }

        div {
            margin: 20px 0 100px 0;
        }

        a {
            display: block;
            font-size: 14px;
            font-weight: bold;
            background-color: #000;
            border-radius: 5px;
            color: #fff;
            text-decoration: none;
            display: inline-block;
            padding: 15px 20px;
            width: 150px;
            text-align: center;

            &:hover {
                background-color: #2f3dff;
            }
        }
    }
}
