/* Reset margins and padding */

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

/* Startscreen style */

#startScreen {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    font-size: 2vw;
}

#startScreen h1 {
    padding-bottom: 1em;
}

span,
.title-item {
    color: #396afc;
    font-weight: bolder;
}


.slider {
    height: 3em;
    overflow: hidden;
}

.titleWrapper {
    height: 100%;
    animation: move 8s ease-in-out infinite;
}

.title-item {
    height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    background-color: #396afc;
    color: white;
}

@keyframes move {
    33% {
        transform: translateY(-3em);
    }

    66% {
        transform: translateY(-6em);
    }

    100% {
        transform: translateY(-9em);
    }
}

/* Contact Me */


footer {
    background: #333;
    padding: 1em 0;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
}

footer a {
    font-size: 1.5vw;
}
