* {
    margin: 0px;
}

body {
    font-family: "Rubik", sans-serif;
    background-color: #07051C;
}

main {
    margin: 10%;
}

footer {
    position: fixed;
    bottom: 2px;
    margin-left: 10%;
}

footer p {
    font-size: 1em;
}

h1 {
    font-weight: 600;
    font-size: 66px;
    color: white;
}

p {
    color: #b3bbc3;
    font-size: 1.2em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .2s;
}
a:hover {
    color:white;
}

span {
    display: block;
    position: relative;
    font: normal 600 1rem "Rubik", sans-serif;
    color: #f987d6;
    margin-top: 1rem;
    padding-left: 5rem;
    margin-bottom: 2rem;
}

span::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 60px;
    height: 2px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    background-color: #f987d6;
    background: -webkit-gradient(linear, left top, right top, from(#977ec7), to(#f987d6));
    background: -moz-linear-gradient(left, #977ec7 0%, #f987d6 100%);
    background: -o-linear-gradient(left, #977ec7 0%, #f987d6 100%);
    background: linear-gradient(to right, #977ec7 0%, #f987d6 100%);
}

.blocks {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 70px;
}

.block {
    display: flex;
    flex-direction: row;
    gap: 25px;
    background-color: #141228;
    align-items: center;
    border-radius: 15px;
    padding: 10px 30px;
    min-width: 200px;
}

.nb {
    color: white;
    font-weight: 500;
    font-size: 3em;
}

.desc {
    color: #b3bbc3;
    ;
}

@media screen and (max-width: 800px) {
    footer p {
        font-size: 0.7em;
    }
}