body {
    margin: 0px;
}

canvas {
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.main-title {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    width: 80%;

    font-family: 'Roboto', sans-serif;
}

.title, .subtitle, .social-icons {
    margin: 5px;
}

@media screen and (min-width: 601px) {
    .title {
        font-size: 64px;
    }

    .subtitle {
        font-size: 32px;
    }

    .social-icons {
        font-size: 24px;
    }
}

.title {
    text-align: center;
}

.subtitle {
    text-align: center;
}

.social-icons {
    display: flex;
    flex-direction: row;
    text-align: center;

    margin-top: 20px;
}

#github-icon, #linkedin-icon, #letterboxd-icon {
    margin-left: 10px; 
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ededed;
}

.social-icons > a > i {
    transition: transform 0.2s ease-out;
}

.social-icons > a > i:hover {
    transform: translateY(-5px);
}