
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@200;300&family=Playfair+Display&family=Righteous&family=Roboto:wght@300&display=swap');


body {
    color: black;
    background: white;
    font-family: 'Playfair Display', serif;
    font-family: 'Oswald', sans-serif;
}

main{
    background: white;
    margin: 0 auto;
    padding: 10px;
    width: 95%;
    font-family: 'Oswald', sans-serif;
}

h1 {
    text-align: right;
    text-transform: uppercase;
    color: black;
    font-family: 'Bebas Neue', cursive;
}

h2 {
    background: rgb(41, 41, 41);
    color: white;
    margin: 0px auto 0px auto;
    padding: 3px 100px;
    font-family: 'Bebas Neue', cursive;
}

p {
    margin: 0px auto 50px auto;
    padding: 10px 15px;
}

a:link {
    color: rgb(0, 0, 130);
}
a:hover{
    color:rgb(22, 70, 158);
}
a:visited {
    color: rgb(50, 110, 238);
}

ul {
    display: flex;
    justify-content: space-evenly;
}

ul > li{
    display: inline;
}

#language-selection {
    font-size: small;
    font-family: 'Oswald', sans-serif;
}
#language-selection a:link{
    color: rgb(35, 35, 255);
}
#language-selection a:hover{
    color: darkblue;
}
#language-selection a:visited{
    color: rgb(35, 35, 255);
}