.section {
    width: 100%;
    height: 100vh;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: rgb(243,252,255);
    background: radial-gradient(circle, rgba(243,252,255,1) 0%, rgba(255,251,251,1) 100%);
}

    .section h1 {
        font-size: 470px;
        font-weight: 700;
        color: #2D2D32;
        margin-bottom: 50px;
    }

    .buttons {
        display: flex;
        flex-direction: row;
    }

        .buttons button {
            margin-right: 20px;

            padding: 10px 20px;

            background-color: #d8d8d8;
            border: none;

            color: white;
            font-size: 24px;

            cursor: pointer;
            outline: none;

            transition: 0.1s;

            border-radius: 5px;
        }

            .buttons button:active {
                box-shadow: 0 3px 3px -2px rgba(0,0,0,.2), 0 3px 4px 0 rgba(0,0,0,.14), 0 1px 8px 0 rgba(0,0,0,.12);
            }

            .buttons button:last-child {
                margin-right: 0;
            }

            .buttons button:nth-child(1){
                background-color: #46c46d;
            }

            .buttons button:nth-child(2){
                background-color: #d24141;
            }

            .buttons button:nth-child(3){
                background-color: #f5b031;
            }