/* https://www.gent.media/manrope */
@import url("https://fonts.googleapis.com/css?family=Manrope");

html {
   margin: 0px;
   height: 100%;
   width: 100%;
}

body {
    margin: 0;
    height: 100%;
    width: 100%;

    /* Font */
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 110%;
    color: #C2CBD5;

    /* Page */
    color-scheme: dark;
    background-color: #060e17;

    background-image: url("static/harbor_front.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
}

h1 {
    margin: 0;
    padding: 0;
}

h2 {
    opacity: 0.7;
    margin:0;
    padding:0;
}

h3 {
    margin:0;
    padding:0;
}

p {
    margin: 0;
    padding: 0;
}

.navbar {
    max-height: 100px;
    display: inline-flex;
    align-items: baseline;
    margin: 0px;
    width: 100%;
    padding: 15px;
    background-color: #060e17e4;
    /* position: absolute; */
    top: 0;
    z-index: 10;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.navbar-item {
    width: min-content;
    padding: 15px;
}

.navhost {
    background-color: #060e17ab;
    padding: 45px;
}

.privacy-policy-navhost {
    background-color: #060e17;
    padding: 45px;
}

a {
    padding-left: 15px;
    padding-right: 15px;
}

a:link {
    color: white;
    background-color: rgba(255, 255, 255, 0);
    background-color: transparent;
    text-decoration: none;
    transition: 0.3s;
}

a:visited {
    color: white;
    background-color: rgba(255, 255, 255, 0);
    background-color: transparent;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: larger;
    transition: 0.3s;
}

a:active {
    color: white;
    background-color: rgba(255, 255, 255, 0);
    background-color: transparent;
    text-decoration: none;
    transition: 0.3s;
}
