
* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: #1a1c1e;
    color: #fefefe;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wrapper {
    width: 50%;
    min-width: 380px;
    height: 100vh;
    position: relative;
    padding: 180px 0;
    margin: 0 auto;
}

.error-title {
    color:#e83535;
    font-family: 'Consolas', sans-serif;
    font-size: 64px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 0 5px;
    text-shadow: 0 0 3px rgba(10, 11, 13, 0.1);
}

.error-message {
    width: 100%;
    margin-top: 10px;
    padding: 20px 5px 15px 5px;
    border-top: 2px solid #303030;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #e2e2e2;
}

a {
    font-size: 13px;
    color: #aaa;
}

a:hover {
    color: #fff;
}

.error-details {
    width: 100%;
    padding: 5px;
    font-size: 14px;
    font-weight: 400;
    color: #999;
}

.back-to-homepage {
    position: absolute;
    top: 80px;
}

video.hidding {
    opacity: 0;
    transition: opacity 1s linear;
    position: relative;
    z-index: 0;
}

video.showing {
    opacity: 1;
    transition: opacity 1s linear;
    position: relative;
    z-index: 1;
}