html {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 100%;
    color: white;
    background-color: #7ca5cf;
}

#container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 0.5rem;
    overflow: hidden;
}

header {
    display: block;
}

header div {
    display: flex;
    align-items: center;
}

header a {
    margin: 0 1rem 0 0;
    color: white;
    text-decoration: none;
    animation-name: bounce;
    animation-duration: 0.5s;
}

header a:hover {
    text-decoration: underline;
}

#name {
    font-size: 2.5rem;
    animation-name: bounce;
    animation-duration: 0.5s;
}

.icon {
    height: 1.5rem;
    width: 1.5rem;
}

#Github {
    animation-delay: 0.05s;
}

#LinkedIn {
    animation-delay: 0.1s;
}

.section {
    margin: 1rem 0 0 0;
}

.title-wrapper {
    overflow: hidden;
}

.title {
    font-size: 1.5rem;
    animation-name: slide-up;
    animation-duration: 0.5s;
}

footer {
    font-size: 0.75rem;
    text-align: center;
}

@keyframes bounce {
    from {
        transform: translateY(100%);
        opacity: 0%;
    }

    50% {
        transform: translateY(-50%);
    }

    to {
        transform: translateY(0%);
        opacity: 100%;
    }
}

@keyframes slide-up {
    from {
        transform: translateY(200%);
    }

    to {
        transform: translateY(0%);
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    html {
        font-size: 120%;
    }

    #container {
        padding: 0 2rem;
    }

    header {
        display: flex;
        justify-content: space-between;
    }

    header a {
        margin: 0 0 0 1rem;
    }
}
