* {
    font-family: "DM Sans", sans-serif;
    margin: 0;
}

.header {
    background: linear-gradient(to right, snow, lightgray);
    padding: 1rem;
    font-weight: lighter;
    width: auto;
    z-index: 0;
    font-size: 16pt;
}

.container {
    display: flex;
    flex-direction: row;
    height: 250vh;
    width: auto;
    padding: 1rem;
    background: linear-gradient(to bottom right, dodgerblue 10%, darkorchid 90%);
    align-items: start;
}

.content {
    z-index: 1;
}

svg {
    transform: scale(3) translate(-1vw, 0vh);
    z-index: 0;
}

h1 {
    color: snow;
    width: 75vw;
    line-height: 0.70;
    font-weight: bolder;
    border-bottom: 1px solid snow
}

.profilepic {
    border-radius: 50%
}

.nav-menu {
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 23pt;
}

a:visited {
    color: hotpink; 
}

h2 {
    padding: 3rem 10px;
    font-size: 46pt;
    color: gold;
    line-height: 0.86;
    background-color: rgba(.95,.95,.95,0.2);
}

.graphic p {
    font-size: 22pt;
    color: lightgrey;
}

.graphic {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lbb2 {
    background-image: url("lbb2.jpg");
    background-size: cover;
    height: 700px;
    width: 90vw;
}

.lbb3 {
    background-image: url("lbb1.jpg");
    background-size: cover;
    height: 1200px;
    width: 90vw;
}

.graphic h3 {
    color: gold;
    font-size: 22pt;
    padding: 1rem 0;
}

@media screen and (min-width: 1080px) {

    h2 {
        width: 50vw;
    }

    .graphic {
       
    }

    .lbb2,
    .lbb3 {
        width: 20vw;
        height: 70vh;
    }
    
    .graphic p {
        font-size: 20pt;
        width: 50vw;
    }

}












































