* {
    margin: 0; padding: 0; border: 0;
    box-sizing: border-box;
}

h1 {
    color: cadetblue;
    text-align: center;
    text-shadow: 3px 1px orangered;
    font-size: 50px;
}

p {
    color: cadetblue;
    text-align: center;
    font-size: 30px;
    text-shadow: 3px 1px #222;
}

body {
    background-color: slategray;
}

.left {
flex: 1 0 50%;

height: 440vh;
}

.container {

    display: flex;
    flex-flow: row wrap;
    position: relative;
    
}

.right {
flex: 1 0 5%;
background-image: url(../images/sbadd.jpg);
height: 100vh;
background-repeat: no-repeat;
background-size: cover;
background-position: center
background-attachment: fixed;



}

.block {
    background-color: lightgoldenrodyellow;
    width: 50vw;
    height: 10vh;
    position: absolute;
    top: 2em; left: 50vw;
    transform: translateX(-50%);
    text-align: center;
    font-weight: bold;
    font-size: 45px;
    border: goldenrod 4px dotted;
    
}
footer {
    background-color: goldenrod;
    padding: 60px 0px;
    color: #222;
    font-weight: bold;
    font-size: 30px;
    }