@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: none;
}

table {
    width: 100%;
    text-align: center;
    font-size: 25px;
    background-color: #1D2D44;
    border-radius: 15px 50px
}

td {
    width: 20%;
    padding: 20px;
}

a {
    color: currentColor;
    text-decoration: initial;
}

#home {
    font-size: 32px;
}

h1 {
    font-size: 48px;
    text-align: center;
    margin-top: 38px;
}

img {
    width: 800px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px 50px 30px;
}

#nav-bar-mobile {
    display: none;
}

@media only screen and (max-width: 1000px) {
    img {
        width: 80%;
    }
}

@media only screen and (max-width: 650px) {
    #nav-bar-mobile {
        display: table;
    }

    #nav-bar-desk {
        display: none;
    }

    td{
        width: 100%;
        padding: 10px;
    }
}