#home-left {
    background-color: #212121;
    height: 100vh;
    padding: 0;
}

#home-left h1 {
	animation: focus-in-expand 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

#home-left p {
    animation: focus-in-expand 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation-delay: 0.3s;
}

#home-right {
    background-image: url("../images/dg-background.jpg");
    background-size: cover;
    background-position: center;
    padding: 0;
}

#home-right .cover {
    width: 100%;
    height: 100%;
    background-color: rgba(233, 233, 233, 0.5);
}

.blurb {
    font-family: miller-headline;
    color: #e9e9e9;
    font-size: 20px;
    letter-spacing: 1px;
    position: absolute;
    top: 40%;
    right: 5%;
    transform: translate(0%,-50%);
}

ul {
    list-style: none;
    position: absolute;
    top: 40%;
    left: 5%;
    transform: translate(0%,-50%);
    animation: text-focus-in 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation-delay: 0.5s;
    padding: 0;
}

ul li a:link {
    color: #212121;
    font-size: 24px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all .2s ease-in-out;
}

ul li a:hover {
    text-decoration: none;
    opacity: 0.5;
    transition: all .2s ease-in-out;
}

ul li a:visited {
    color: #212121;
}
