@charset "utf-8";
     

h1 {
    display: block;
    text-align: center;
    color: black;
    text-shadow: 10px 5px 4px grey;
    font-size: 40px;    
    }   

p {
    color: black;
    text-align: center;
    display: block;
    margin-left: 20%;
    margin-right: 20%;
}
    
header {
    display: block;
    text-align: center;
}

header > nav a {
    text-align: center;
    display: block;
}

body > h1 {
    display: block;
    width: 100%;
    text-align: center;
    
}

nav li {
    display: block;
    float: left;
    text-align: center;
    width: 20%;
    margin-top: 30px;
}

nav a {
    color: black;
    font-size: 25px;
    font-family: serif;
    outline: 1px solid black;
    font-weight: bold;
    text-decoration: none;
    display: block;
    text-align: center;    
}

.container {
    height: 100%;
    width: 100%;
    display: grid;
    background-color:black;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: 
        ". g ."
        "s q a";
}

.container img {
    width: 100%;
}

.container  video {
    width: 100%;
    height: 100%;
   
}

.gildedsword {
    grid-area: g;
}

.small_screens {
    grid-area: s;
}

.quote {
    grid-area: q;
    color: white;
    text-align: center;
    line-height: 3;
    font-family: serif;
    font-weight: bolder;
}

.armored_warrior {
    grid-area: a;
}


body::after {
    clear: both;
    content: "";
    display: table;
}

footer {
    text-align: center;
}

div {
    outline: 1px solid white;
}




























































