/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, rgba(162,212,230,1) 0%, rgba(144,185,200,1) 100%) no-repeat;
    height: 100vh;
}

.container {
    width: 75%;
    margin: 0 auto;
}

ol, ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
}

h1 {
    font-size: 3em;
    margin: 20px 0;
    text-align: center;
}

h2 {
    font-size: 2em;
    margin: 10px 0;
}

a {
    font-size: 1.3em;
    color: #001524;
}


