body {
    background:
        linear-gradient(to bottom right, #e3f4ee, white, #e3f4ee);
    margin: 0;
}

body>div {
    display: flex;
    flex-direction: column;
    padding: 60px 120px;

    .name {
        color: #54BD95;
        font-size: 50px;
        font-weight: bold;
    }
}

.row {
    display: flex;
    flex-direction: row;

    .box {
        display: flex;
        flex-direction: column;
        background-color: white;
        aspect-ratio: 1;
        margin: 1vw;
        flex: 1;
        align-items: center;
        text-align: center;
        color: #2D2D2D;
        justify-content: start;
        border-radius: 5%;
        border: 1px solid #e5f4f2;


        div {
            padding: 0 5%;
            margin: 10px 0;
        }

        img {
            width: 25%;
            margin-top: 10%;
            margin-bottom: 20px;
        }

        .title {
            font-size: 28px;
            padding: 0 15%;
            font-weight: bold;
        }

        .value {
            font-size: 16px
        }
    }
}

.column {
    display: flex;
    flex-direction: column;

    .instant {
        font-size: 60px;
        color: #14183E;
        font-weight: bold;
        line-height: 60px;
    }

    .join {
        font-size: 18px;
        color: black;
        font-weight: 500;
    }


    .box2 {
        margin: 2vw 0;

        .seq {
            margin: auto;
            flex: 1;
            aspect-ratio: 1;
            border-radius: 20%;
            color: white;
            font-size: 36px;
            font-weight: 500;
            justify-items: center;
            align-content: center;
        }

        .column {
            flex: 19;
            padding-left: 1vw;
        }
    }
}

.card {
    background-color: white;
    border-radius: 5%;
    padding: 1vw 3vw;
    width: 35%;
    border: 1px solid #e5f4f2;

    .icon {
        margin-right: 20px;
        justify-content: center;

        img {
            width: 80px;
            margin: 10px 0;
        }

        div {
            font-size: 21px;
            color: #111827;
            font-weight: bold;
        }
    }

    .star {
        div {
            font-size: 16px;
            color: #2D2D2D;
            margin: 10px 0;

            img {
                width: 30px;
            }
        }

    }
}

.left {
    margin: 2vw 13% 2vw 2%;
}

.right {
    margin: 2vw 2% 2vw 13%;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    background-color: #161C28;
    width: 100%;
    height: 500px;

    .info {
        font-size: 50px;
        font-weight: bold;
        margin-top: 5vw;
        margin-bottom: 2vw;
    }

    .column {
        font-size: 22px;
        font-weight: 500;
        text-align: center;
        line-height: 48px;
    }

    a {
        text-align: center;
        font-weight: normal;
        font-size: 18px;
        color: #A6A6A6;
        line-height: 40px;
    }
}