body {
    font-size: 30px;
    font-family: 'Times New Roman', Times, serif;
    color: whitesmoke;
    font-style: italic;
    margin: 0px;
}

header {
    text-align: center;
    font-weight: bold;
    font-style: italic;
    font-size: 40px;
}

header img {
    width: 320px;
    height: 220px;
}

header a {
    font-family: 'Pushster', cursive;
    color: whitesmoke;
    font-weight: normal;
    font-size: 30px;
    text-decoration: none;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 15px;
}

h1 {
    font-family: 'Pushster', cursive;
    text-align: center;
    font-weight: bold;
    font-style: italic;
    font-size: 50px;
    margin-bottom: 5px;
    padding-top: 25px;
    text-shadow: 5px 5px 5px rgb(39, 39, 39);
}

a {
    color: whitesmoke;
}

/* .bg {
    width: fit-content;
    height: fit-content;
    padding: 10px;
    background-color: gray;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    border-radius: 5px;
} */

/* For fancy section headers */

*:before, *:after { content: ''; }
hr {
    border: 0;
    margin: 1.35em auto;
    max-width: 100%;
    background-position: 50%;
    box-sizing: border-box;
}

.shine {
    height: 20px;
    width: 60%;
    background-image: radial-gradient(
      farthest-side at 50% -50%,
      #f5f5f5ff,
      #f5f5f500);
    position: relative; 
    margin-top: 10px;
}
  
.shine::before {
    height: 1px;
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    background-color: #f5f5f580;
}

.main {
    width: 1000px;
    /* background-color: rgba(128, 128, 128, 0.5); */
    /* backdrop-filter: blur(5px) grayscale(50%); */
    padding: 20px;
    margin: auto;
}

.main img:not(.logo) {
    width: 90%;
    box-shadow: 5px 5px 5px grey;
}

a.menu {
    background-color: grey;
    color: whitesmoke;
    text-decoration: none;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 5px 5px 5px rgb(39, 39, 39);
}

a.menu:hover {
    background-color: black;
}

embed {
    width: 90%;
    height: 1200px;
    margin-left: auto;
    margin-right: auto;
}

section.gallery {
    max-width: 1000px;
}

section.gallery img {
    width: 100%;
}

@media screen and (max-width: 1000px) {
    .main { width: 100%; }
}