*,::after,::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    width:100vw;
    height: 100vh;
    display: grid;
    place-items: center;
    background-image: linear-gradient(to bottom, #2e3339, #28323a, #21313b, #17303b, #0a2f3b);
}

h1{
    margin:2rem 0;
    font-size: 3rem;
    color:#ccc;
    /* text-transform: uppercase; */
}

.order-list ol{
    margin-left: 4rem;
}

.order-list ol li{
    list-style: square;   
    color:#ccc;
    padding: 1rem;
    
}

.order-list ol li a{
    /* text-decoration: none; */
    font-size: 1.8rem;
    color:rgb(175, 187, 183);
}

@media(max-width:400px){
    .order-list h1{
        font-size: 2rem;
        text-align: center;
    }
    .order-list ol{
        margin-left: 4rem;
    }

    .order-list ol li{
        padding: 1rem 0;
    }
}