@charset "utf-8";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
}

.container {
    position: relative;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: -1;
}

.container video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.container .content {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
text-align: center;
}

.container .content h3 {
    font-size: 60px;
    color: #fff;
}

.container .content p {
    font-size: 15px;
    color: #eee;
    padding: 5px 0;
    max-width: 700px;
    text-shadow: 0 5px 10px rgba(0,0,0,20);
}


