@import url('https://rsms.me/inter/inter-ui.css');

*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root{
    --gap: 60px;
}

html{
    font-family: 'Inter UI', sans-serif;
}

body {
    padding: var(--gap);
    position: fixed;
}

main {
    display: flex;
}

main div {
    grid-column-end: span 3;
    padding-bottom: 1em;
    padding-right: 3em;
}

li {
    list-style: none;
    padding-bottom: 1em;
}

li:last-of-type{
    padding-bottom: 0;
}

h1,
h2,
a,
p {
    font-size: 16px;
    line-height: 1.25;
    font-weight: 400;
    color: #000;
}

a{
    text-decoration: none;
    display: block;
    transition: filter 0.5s;
}

a:hover{
    filter: blur(10px);
}

svg{
position: fixed;
right: var(--gap);
bottom: var(--gap);
width: 300px;
height: auto;
}

@media (max-width:800px){

    :root{
        --gap: 40px;
    }
    main{
        flex-direction: column;
    }
    main div:nth-of-type(2){
    display: none;
    }
}