*{box-sizing: border-box; font-size: 30px; font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif; font-style: italic; }
body{background-color: black;} 

.flex-container1 {  display: flex;  flex-direction: row;   background-color: transparent; justify-content: flex-end;   align-items: center; padding-top: 0px; padding-right: 15px;}
.flex-container1 a{font-size: 20px; color: white}


.flex-container2 {  display: flex;  flex-direction: row;   justify-content: center;   }
.flex-container2>div {width: 84%; padding-left: 8px; padding-right: 8px; }

.flex-container2 button{
    background-color: transparent;
    color: white;
    width: 50px;
    height: 50px;

    margin-top: 20%;
    text-align: center;
    text-decoration: none;
    font-size: 30px;
    cursor: pointer;
    border-radius: 10px;
    border-color: white;
}



/* visited link */
a:visited {
  color: white;
}

/* mouse over link */
a:hover {
  color: red;
}

/* selected link */
a:active {
  color: royalblue;
}

.flex-container3 {  display: flex;  flex-direction: row;   background-color: transparent; justify-content: center;  align-items: center; padding-top: 20px;}
.flex-container3>div {width: 75%;}



/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .flex-container1{padding-right: 5px;}
  .flex-container1 a{font-size: 15px;}
  

} 

