@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital@0;1&display=swap');

* {
    box-sizing: border-box;
}

html {
    font-family: 'Roboto Condensed', sans-serif;
}

body {
    background-color: #f5f5f5;
}

.celorg-header {
    font-size: 16px;
    background: linear-gradient(#0f3383, #2763be);
    color: white;
    padding: 1rem 5rem;
    text-align: center;
    /*width: 40rem;*/
    width: 100%;
    /*max-width: 90%;*/
    margin: 1rem auto 3rem auto;
    border-radius: 5px;
}

h2 {
    text-align: center;
    margin: 2rem auto 3rem auto;
}

/*a {*/
/*    margin-left: 3rem;*/
/*}*/

.main-section {
    width: 50rem;
    max-width: 80%;
    margin: auto;
    background-color: #e8eff5;
    /*background: linear-gradient(rgba(5, 133, 239, 0.11), rgba(5, 133, 239, 0.04));*/
    padding: 2rem 4rem 8rem 4rem;

}

header {
    margin-bottom: 5rem;
}

.menu-header {
    margin: auto;
    width: 50rem;
    max-width: 80%;
}

.menu-header nav {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;

    text-align: center;
    margin: 1rem auto 1rem auto;
}

.menu-header a {
    font-size: 10px;
    background: linear-gradient(#0f3383, #2763be);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;

}

.menu-header a:active,
.menu-header a:hover {
    color: rgba(230, 230, 230, 0.73);
}

footer {
    position: fixed;
    bottom: 0%;
}