body {
    background-color: rgb(87, 87, 221);
    border: 6px inset blue;
    text-align: center;
    padding-top: 30px;
     font-family: 'Brush Script MT', cursive;
     height:1800px;
}

h1{
    color:pink;
    font-size: 36pt;
    background-color:maroon;
    border:4px solid black;
}

p {
    color:orangered
}

div {
    background-color:blue ; 
    width:400px;
   height: 500px;
   border: 6px solid blue;
   border-radius: 10%;
   padding:20px;
    padding-top: 10px;
    float:left;
    margin:20px
}

.clickable {
    max-width: 90%;
    max-height: 300px;
    border: 4px solid black;
    border-radius: 10%;
}

#lightbox {
    width: 100%;
    height:100%;
    background-color: rgba(0, 0, 0, 0.699);
    position: fixed;
    top:0px;
    left:0px;
    margin:0px;
    border:none;
    border-radius:0px;
    display:none;
    text-align: center;
}


