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

* {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

h1 {
    position: absolute;
    top: 50vh;
    left: 50vw;
    transform: translateX(-50%) translateY(-50%);
    font-size: 100px;
    font-weight: 700;
}
h1 .first {
    color: #303B3F;
}
h1 .second {
    color: #EEB312;
}

.linktree {
    position: absolute;
    bottom: 0;
    display: flex;
    list-style-type: none;
    left: 50vw;
    transform: translateX(-50%);
}
.linktree li {
    padding: 10px;
}

.linktree li a {
    color: #303B3F;
    transition: .3s all ease;
}

.linktree li a:hover {
    color: #EEB312;
}

.linktree li a i {
    font-size: 40px;
}