html, body, div, h1, h2, h3, h4, h5, h6, h69, p, ul, ol, li, aside, nav, main, header, footer {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}

* {
    box-sizing: border-box;
}

h1 {
    font-family: 'oscine';
    font-weight: lighter;
    font-size: 4em;
    text-align: center;
}

h2 {
    font-family: 'oscine';
    font-size: 2em;
    text-align: center;
}

h3 {
    font-family: 'oscine';
    font-size: 2em;
    max-width: 75ch;
    padding-left: 10%;
    display: inline;
}

h4 {
    font-family: 'oscine';
    font-size: 1.25em;
    display: inline;
    padding: 1em;
    vertical-align: 0.25em;
}

nav {
    background-color: black;
    min-height: 6em;
}

body {
    background-color: rgb(240, 240, 240);
}

main {
    display: block;
    position: center;
    width: 60%;
    min-width: 50em;
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0%;
    padding-bottom: 3em;
}

p {
    border-top: 2em;
    font-family: 'helvetica';
    font-size: 1em;
    text-align: justify;
    max-width: 75ch;
    margin-left: auto;
    margin-right: auto;
    padding: 1em;

}

a, a:visited {
    text-decoration: none;
    color: inherit;
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(.15,.77,.4,.96);
}

a:hover {
    color: #a812a8;
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(.15,.77,.4,.96);
}

section {
    display: block;
    padding: 1em;
}

summary::marker {
    font-size: 0.75em;
}

footer {
    height: 15rem;
    margin-top: 5em;
    background: linear-gradient(180deg,rgba(0, 0, 0, 1) 64%, rgba(140, 6, 140, 1) 100%);
}

/* :bleh: */

.normal {
    display: flex;
    padding-left: 10%;
    padding-top: 1em;
}

.disclaimer {
    padding-top: 0;
}

.navbar {
    padding: 0.8em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 1px;
    width: 100%;
    font-family: "oscine";
    text-align: right;
    padding-right: 10%;
    top: 0;
    box-shadow: 0px 3px 10px #000000;
}

.homekoru {
    height: 4em;
    width: 4em;
    margin: 0;
    border: 0;
    cursor: pointer;
    display: block;
    background-image: url("img/korur.png");
    background-size: cover;
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(.15,.77,.4,.96);
    image-rendering: smooth;
}

.homekoru:hover {
    background-image: url("img/korurp.png");
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(.15,.77,.4,.96);
}

.title {
    text-align: center;
}

.navdiv {
    min-height: 6em;
    position: sticky;
    z-index: 1000;
}

.navbar ul {
    text-align: justify;
    list-style-type: none;
    display: flex;
    flex-direction: horizontal;
    flex-wrap: wrap;
    gap: 2em;
}

.navbar li {
    color: white;
    font-size: 3em;
    font-weight: bold;
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(.15,.77,.4,.96);
}

.summary {
	font-size: 2.5em;
	font-weight: bold;
	font-family: 'Oscine', Arial;
	cursor: pointer;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1em;
	padding-left: 2em;
	border-radius: 0.3em;
    transition-property: all;
    transition-duration: 1s;
}

.fleetdetails[open] summary ~ * {
    animation: sweep .5s ease-in-out;
  }
  
  @keyframes sweep {
    0%    {opacity: 0; margin-top: -10px}
    100%  {opacity: 1; margin-top: 0px}
}

.fleet {
    text-align: justify;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.fleetpic {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    padding-bottom: 5em;
    z-index: 0;
}

.gallery {
    height: 17em;
    max-width: 30%;
    flex-wrap: wrap;
    object-fit: cover;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.gallerydiv {
    width: 90%;
    padding-left: 2.5em;
    padding-right: 2.5em;
    text-align: center;
}

.propaganda {
    width: 50%;
    padding-left: 7em;
}

.interimg {
    width: 100%;
    max-height: 25em;
    flex-wrap: wrap;
    object-fit: cover;
}

.interdiv {
    margin-top: 5em;
    margin-bottom: 5em;
}

.intertxt {
    text-align: left;
    margin-left: 1em;
    padding-top: 0.5em;
    font-style: italic;
}

.invite {
    text-align: right;
    display: block;
    padding-right: 10%;
    padding-bottom: 2.5em;
}

.inva {
    color: #000000;
    text-decoration: underline;
}

.alert {
    height: 3em;
    background-color: #da0c0c;
    min-height: 1em;
    font-size: 1em;
    padding: 0.5em;
    align-content: center;
    color: #ffffff;
    cursor: pointer;
}

.alert-hidden {
    margin: 0;
    padding: 0;
    min-height: 0;
    height: 0;
    font-size: 0;
    transition-property: all;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(.15,.77,.4,.96);
}