html, body{
    margin: 0;
    text-align: center;
}

.container {
    background-color: navy;
    padding: .8rem;
    width: 40%;
    margin: 0 auto;
}

.draggable{
    padding: 1rem;
    height: 100px;
    background-color: darkgoldenrod;
    color: aqua;
    border:1px solid black;
    cursor: move;
}

.draggable.dragging {
    opacity: .5;
}

.dragContent {
   text-align: center; 
}

header {
    background-image: url('images/htmlImage.jpg');
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 15% 0;
    color: rgb(250, 250, 155);
    text-shadow: 5px 1px black;
}

.webWorker {
    background-image: url('images/stickFigures.jpg');
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 25vh;
}

.workerContent {
    font-size: larger;
    color: rgb(161, 30, 194);
    background-color: rgba(128, 128, 128, 0.514);
}

