*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    list-style: none;
    text-decoration: none;
}

html {
    height: 100%;
}

body {
    height: 100%;
}

h5 {
    color: #fff;
    font-weight: 200;
}

h6 {
    color: #fff;
    font-weight: 100;
}

h6 a{
    color: #fff;
    text-decoration: underline;
}

.displayed-fs {
    display: flex;
    flex-flow: column;
    background-position: center;
    background-size: cover;
}

header{
    flex: 0 1 auto;
    width: 100%;
    height: auto;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10%;
    transition: padding .3s;
    background: #202020;
}

footer{
    width: 100%;
    height: auto;
    background: linear-gradient(90deg, #17C9FB 0%, #1C71F1 100%);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 30px 4%;
    align-items: center;
}

header img{
    height: 3rem;
    width: auto;
}

.navmenu{
    display: flex;
}

.navmenu a{
    color: #4999EF;
    font-size: 16px;
    font-weight: 300;
    padding: 10px 20px;
    transition: all .5s;
}

.navmenu a:hover{
    color: #3D6690;
}

#menu-icon{
    font-size: 50px;
    color: #4999EF;
    z-index: 10001;
    cursor: pointer;
    display: none;
}

section{
    padding: 0 14%;
    transition: padding .3s;
}


/* reponsiveness */
@media(max-width: 1600px)
{
    header{
        padding: 25px 4%;
    }
    section{
        padding: 0 4%;
    }
}

@media(max-width: 1055px)
{
    h5{
        font-size: 10pt;
    }
    h6{
        font-size: 7pt;
    }
    #menu-icon{
        display: block;
    }
    .navmenu{
        /*display: none;*/
        pointer-events: none;
        display: block;
        transition: opacity 0.5s ease;
        opacity: 0;
        overflow: hidden;
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        padding: 40px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #000;
    }
    .menu-open{
        display: block;
        pointer-events: auto;
        opacity: 1;
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        padding: 40px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #000;
    }

    .navmenu a{
        display: block;
        margin: 10px 0;
        transition: all .5s;
        font-size:30pt;
    }
    .disappear{
        display:none;
    }
}