body{
    background: #200132;
    max-width: 100%;
}
h1{
    text-align: center;
}
h2{
    text-align: center;
}
p{
    text-align: center;
}
button{
 position: relative;
    left: 46%;
    background: deeppink;
    color: grey;
    border: dot-dot-dash 24px mediumspringgreen;
    padding: 30px 12px;
    border-radius: 12px;
}
img{
    position: relative;
    left: 34%;

}
button:hover{
    background: lightpink;
    color: grey;
    font-size: large;
}

strong{
    position:relative;
    left: 36%;
}
/*mobile nav css*/
/* Style the navigation menu */
.topnav {
    overflow: hidden;
    background-color: rgba(12, 12, 54, 0.5);
    position: relative;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
    display: none;
}

/* Style navigation menu links */
.topnav a {
    color: rgba(255, 255, 255, 0.6);
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
    background: #100019;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
    background-color: #100019;
    color: rgb(255, 255, 255);
}

/* Style the active link (or home/logo) */
.active {
    background-color: #200132;
    color: #ffffff;
}