h1 {
    color:white;
    text-align:center;
    font-size: 40px;
}
h2 {
    color: orange;
    text-align:center;
    font-size: 32px;
}
h3 {
    color:#53ff1a;
    font-size:25px;
   
}
body {
    background-color: black;
}
p {
    color:white;
    font-size: 20px;
}
.topnav {
    overflow: hidden;
    background-image: linear-gradient(to right, darkorange, red, green);
}
  
.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}
  
.topnav a:hover {
    background-color: #ddd;
    color: black;
}
  
.topnav a.active {
    background-color: green;
    color: white;
}
.inline {
    display: inline;
    
  }
.myDiv{
    text-align:center;
}
#homep {
    background-image: url('outside.jpg');
    background-repeat:no-repeat;
    background-size:cover;
}
.article {
    position: relative;
    width: 100%;
    max-width: 400px;
  }
  
  .article embed {
    width: 100%;
    height: 400px;
  }
  
  .article .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: #555;
    color: white;
    font-size: 16px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
  }
  
  .article .btn:hover {
    background-color: black;
  }