@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");

* {
    box-sizing: border-box;
}

body {
    background-image: url("img/bg.png");
    background-size: cover;
    background-position: center center;
    font-family: "Roboto", sans-serif;
    margin: 0;
    min-height: 100vh;
    padding: 2rem;
}

p {
    color: #29415e;
    font-size: 2rem;
    width: 700px;

    position: fixed;
    top: 4rem;
    left: 3rem;
}

h1 {
    background-color: #fff;
    display: inline-block;
    font-size: 5rem;
    font-weight: 200;
    padding: 1.5rem;

    position: fixed;
    top: 15rem;
    left: 2rem;
}

a {
    position: fixed;
    top: 2rem;
    right: 3rem;

    color: black;
    text-decoration: none;
    font-size: 2.5rem;
    text-align: right;
}

ul {
    position: fixed;
    top: 20rem;
    right: 5rem;

    font-size: 2rem;
}

ul h3 {
    color: #29415e;
    font-size: 3rem;
    margin: 0;
}

h2 {
    position: fixed;
    top: 30rem;
    left: 20rem;

    text-align: right;
    font-size: 1.5rem;
}

h2 span {
    background-color: #556272;
    color: #fff;
    display: inline-block;
    padding: 2rem;
}

h2 span:last-child {
    transform: translate(-1rem, -1rem);
}

i {
    color: #fff;
    opacity: 0.3;
    font-size: 30rem;

    position: fixed;
    top: 10rem;
    right: 15rem;
}

@media screen and (max-width: 768px) {
    * {
        position: static !important;
        max-width: 100%;
    }

    i.fas {
        display: none;
    }
}