body {
    margin: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background-color: #f5f5f5;

}

nav {
            display: flex;
            justify-content: flex-end;
            background-color: #333;
        }

        nav a {
            color: rgb(201, 46, 46);
            padding: 14px 20px;
            text-decoration: none;
            
        }

        h1 {
            font-size: 75px;
            font-family:Verdana, Geneva, Tahoma, sans-serif;
            text-transform: uppercase;
            background-color: #1a1a1a;
            color:white;
            height: 85px;
            margin: 0;
            padding: 20px 20px;
        }
    #r {
        color: rgb(141, 26, 26);
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-size: 25px;
    }
/*GRID*/
.container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 10px;
    margin: 40px;
    margin-bottom: 0px;
}

/*PHOTO AND BIO*/


/*Has background, own grid*/

.section-with-bckg {
    display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-gap: 10px;
            align-items: center;
            background-color: black;
            padding: 20px;
            grid-column: span 5;
            border-bottom: 70px solid #333;
            box-shadow: 2px 15px 60px #7e7e7e;
}

#pic {
    
    grid-column: span 2;
    
    
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

#bio {
    grid-column: span 2;
    max-width: 100%;
            height: auto;
            display: block;
    color: white;
    border: 2px solid white;
    border-top-left-radius: 150px;
    padding: 30px;
    padding-bottom: 12px;
    text-align: right;
    font-size: 23px;
    
}

b {
    color: rgb(221, 18, 18);
}
/*Bio deco*/

span {
    font-size: 27px;
}

span#little {
    font-size: 18px;
    font-style: oblique;
}

/*BOXES*/
.box1 {
   
    grid-column: span 6;
}
img#corner {
    border-bottom-right-radius: 100px;
    box-shadow: -6px 8px 15px #a5513f;
}
/*Photo Comatose*/

.box4 {
    grid-column: span 6;
    font-size: 37px;
    padding: 45px;
}

.pad {
    padding: 5px;
    color: rgb(59, 49, 49);
}

h2#center {
    text-align: center;
    font-size: 38px;
}

/*Blockquote*/
.box2 {
    
    grid-column: 4/10;
}

blockquote#quote {
    color: white;
    text-align: center;
    font-size: 35px;
    padding: 20px;
    max-width: 100%;
    height: auto;
   
}
.hover-box {
    background-color: rgba(26, 26, 26,95%);
    border-radius: 20px;
    transition: all 0.3s ease;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.hover-box .highlight {
    color: white;
    transition: color 0.3s ease;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 35px;
}

.hover-box:hover {
    box-shadow: 0px 0px 100px purple;
    transform: scale(1.1)
}

.hover-box:hover .highlight {
    color: red;
}

/*Background img*/


.section-with-bgi {
    position: relative;
    overflow: hidden;
    margin: 40px;
    margin-top: 0px;
    margin-bottom: -10px;
    height: 1200px;
}

.bg-blur {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url(Skilletlive.gif);
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    z-index: 0;
    
}

.content {
    position: relative;
    z-index: 1;
    padding: 300px;
    height: 1000px;
}

/*BOX 3*/
.box3 {
    
    grid-column: span 7;
    grid-row: span 2;
    margin-left: 80px;
    
}
/*Revolution*/
p.r {
    
    letter-spacing: 1px;
    text-align: center;
    font-size: 30px;
}
blockquote {
    color: rgb(15, 15, 116);
    margin-left: 20px;
    text-align: center;
    font-size: 27px;

    
}
img#c2 {
    border-top-left-radius: 100px;
    max-width: 100%;
    height: auto;
    display: block;
    justify-content:right;
    box-shadow: -6px 8px 15px #082142;
}

.box5 {
    
    grid-column: span 5;
    grid-row: span 2;
    padding-left: 30px;
    
}

.space2 {
    grid-column: 1/13;
    grid-row: span 6;
}

/*Space between box 3 and 2*/

.space {
    grid-column: 1/13;
    grid-row: span 15;
}

/*Footer*/

footer {
    grid-column: 1/13;
    max-width: 100%;
    height: auto;
    background-color: rgb(26, 26, 26);
    color: white;
    
}

.source {
    text-align: center;
    padding: 30px;
    margin: 10px;
}

p.right {
    text-align: left;
}

a.study {
    display: block;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
a.study:hover {
    color: red;
    transform: scale(1.1);
}
hr {
    margin-top: 20px;
}