@import url('https://fonts.googleapis.com/css2?family=IM+Fell+French+Canon&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant&display=swap');

body {
    font-family: 'Cormorant';
    font-weight: 700;
    color: #F0EBD8;
    background-color: #3E5C76;
    user-select: text;
    cursor: default;
}

.navbar-link {
    width: 20%;
    padding: 20px;
}

a {
    color: currentColor;
    text-decoration: initial;
}

h1 {
    font-size: 48px;
    text-align: center;
    margin-top: 38px;
    margin-left: 20%;
    margin-right: 20%;
}

.heading-td {
    width: 33.3%;
    min-width: 200px;
}

table {
    width: 100%;
}

#nav-bar-desk, #nav-bar-mobile {
    text-align: center;
    font-size: 25px;
    background-color: #1D2D44;
    border-radius: 15px 50px
}

#home {
    font-size: 32px;
}

.flag {
    width: 150px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
}

h2 {
    margin-left: 140px;
    font-size: 45px;
}

p {
    font-size: 30px;
    margin-left: 200px;
    margin-right: 200px;
    text-align: justify;
    text-indent: 60px;
}

ul {
    list-style-type: none;
    font-size: 40px;
    margin-left: 140px;
}

li {
    padding-bottom: 15px;
}

.link:link, .link:visited {
    color: #9dacc5;
}

#nav-bar-mobile {
    display: none;
}

#heading-mobile {
    display: none;
}

@media only screen and (max-width: 650px) {
    #nav-bar-mobile {
        display: table;
    }

    #nav-bar-desk {
        display: none;
    }

    .navbar-link {
        width: 100%;
        padding: 10px;
    }

    #heading-mobile {
        display: table;
    }

    #heading-desk {
        display: none;
    }

    .heading-td {
        width: 100%;
    }

    .flag {
        margin-top: 20px;
    }

    h2 {
        margin-left: 8%;
    }

    p {
        margin-left: 10%;
        margin-right: 10%;
        text-indent: 15%;
        font-size: 25px;
    }
}