html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000000;
    color: #ffffff;
}

.text {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100vh;
    margin-left: 0;
    padding-top: 15vh;
}

a { 
    text-decoration: none; 
    color: #2ee6e3;
    border-bottom: 2px solid #2ee6e3;
}

i {
    font-size: smaller;
    color: #ffffff;
}

@media screen and (max-width: 768px) {
    .text {
        padding: 10vh 20px 0 20px;
    }
    
    h1 {
        font-size: 1.8em;
    }
}