* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #333; 
}

.card, .bloop {
    position: fixed;
}

.bloop {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.card {
    top: 50%;
    left: 50%;
    height: 200px;
    width: 400px;
    margin-left: -200px;
    margin-top: -100px;
    font-family: 'Titillium Web', sans-serif;
    text-align: center;
}

.card header {
    font-size: 2em;
}

.card .name {
    color: white;
    text-shadow: 0 0 5px black;
}

.card .title {
    color: rgba(255,255,255,.3);
}

.greeting {
    position: relative;
    top: 75px;
}

.greeting ul {
    list-style: none;
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    height: 25px;
}

.greeting li {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}