img {
    max-width: 100%;
}

body {
    background: #666;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

#video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

video {
    position: fixed;
}

nav {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}

nav a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    padding-bottom: 5px;
    padding-top: 5px;
    padding-left: 40px;
    padding-right: 40px;
    transition: all 0.3s;
}

nav a:hover {
    background: white;
    color: #666;
}

h1 {
    margin-top: 300px;
    margin-bottom: 300px;
    text-align: center;
    text-transform: uppercase;
    color: white;
}

#about {
    background: white;
    text-align: justify;
    max-height: 400px;
}

.containerAbout {
    width: 600px;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    white-space: inherit;
}

.quote {
    margin-top: 100px;
    margin-bottom: 300px;
    text-align: center;
    text-transform: uppercase;
    font-size: 24px;
    visibility: inherit;
}

h3 {
    margin-top: 300px;
    margin-bottom: 300px;
    text-align: center;
    text-transform: uppercase;
    color: white;
}

#work {
    background: white;
    text-align: justify;
    height: 600px;
}

.containerWork {
    width: 800px;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    white-space: inherit;
}

div b {
    width: 150px;
    height: 100px;
    font-size: 15px;
    text-transform: uppercase;
    background: white;
    border: black;
    transition: all 0.3s;
}

div b:hover {
    background: #666;
    color: white;
}

.project {
    display: inline-block;
    width: 370px;
    margin-right: 20px;
    transition: all 0.3s;
}

.project:hover {
    opacity: 0.2;
    -webkit-filter: blur(10px);
}