/* Main CSS */
*,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lora', serif;
    background: #f1f1f1;
}

.home {
    height: 100vh;
    position: relative;
}

video {
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    background: rgba(0,0,0,0.7);
}

.home-content {
    width: auto;
    margin: 0 auto;
    position: relative;
    top: 150px;
    color: #fff;
    z-index: 3;
}

.home-content h1 {
    text-align: center;
    font-size: 85px;
    line-height: 1.1;
}

.home-content h1 span {
    background: black;
    opacity: 50%;
    padding: 12px 9px;
}

.home-content h4 {
    text-align: center;
    font-size: 2rem;
    opacity: 50%;
}

.home-content h5 {
    text-align: center;
    font-size: 1.3rem;
    opacity: 50%;
    margin: 45px 0 30px;
}

.home-content .logo-section {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.home-content .logo-section div span {
    background-color: white;
    margin-right: 15px;
    opacity: 60%;
}

.home-content .logo-section div span img {
    width: 40px;
    height: 40px;
}

.home-content .github-logo,
.home-content .linkedin-logo {
    width: 44px;
    height: 44px;
    display: inline-block;
}

.home-content .github-logo img,
.home-content .linkedin-logo img {
    position: relative;
    top: 2px;
    left: 2px;
}

.middle-line {
    height: 200px;
    width: 2px;
    background: #fff;
    margin: 40px auto;
}

.home-content button {
    display: block;
    font-size: 20px;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    background: transparent;
    color: #fff;
    margin: 50px auto 0;
    padding: 16px 30px;
    cursor: pointer;
}