* {
    font-family: 'Noto Serif', serif;
}

html,body {
    height: 100%;
}

a {
    color: black;
}

a:hover {
    color: black;
}

img {
    max-width: 100%;
}

ul.nav-menu {
    margin: 0;
    padding: 0;
}

ul.nav-menu li {
    display: inline;
    padding: 15px;
}

a.underlined-link {
    text-decoration: underline;
}

.header .navigation ul {
    margin: 0;
    padding: 0;
}

.header .navigation ul li {
    display: inline;
    padding: 15px;
}

.header .navigation {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header .lang-selector {
    margin-right: 15px;
    color: rgb(102, 102, 102);
}

.hero {
    height: 70%;
    width: 100%;
    display: flex;
    align-items: center;
    background-image: url('../img/hero.png');
}

.small-hero {
    height: 40%;
    width: 100%;
    display: flex;
    align-items: center;
    background-image: url('../img/hero.png');
}

.hero .centre, .small-hero .centre {
    text-align: center;
    width: 100%;
}

.hero .centre h1, .small-hero .centre h1 {
    color: white;
    font-size: 4rem;
}

.hero .centre p, .small-hero .centre p {
    color: #ddd;
    font-size: 1.4rem;
}

.about {
    padding: 80px 0 80px 0;
}

.footer {
    background-color: rgb(15, 15, 15);
    padding: 80px 0 40px;
}

.footer a {
    color: white;
}

.footer .footernav ul {
    margin: 0;
    padding: 0;
}

.footer .footernav ul li {
    display: inline;
    padding: 15px;
}

.footer .footernav ul li a {
    color: white;
}

.footer .copyright {
    padding-left: 30px;
    color: white;
}

.footer .crest img {
    vertical-align: middle;
}

@media only screen and (max-width: 820px) {
    .hero .centre h1 {
        color: white;
        font-size: 2rem;
    }
    
    .hero .centre p {
        color: #ddd;
        font-size: 1.2rem;
    }
}

@media only screen and (max-width: 768px) {
    .footer .copyright {
        text-align: center !important;
        padding-left: 0px;
    }
    .footer .links {
        text-align: center !important;
    }
    .footer .crest {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}