
body {
    margin: 0px;
    background-color: #f3eae8;
}

.bold {
    font-weight: bold;
}#top {
    margin: 0px;
    padding: 0px;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}

.headerTitle {
    width: 25%;
    min-width: 300px;
}

.headerTitle p {    
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 36px;
    font-weight: bold;

    color: #000000;
    text-shadow: #000000 0 0 4px;
    text-align: center;

    margin: 10px;
    margin-top: 5px;
}

.headerNavigation {
    width: 75%;
    min-width: 500px;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.headerNavigationElement {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    
    text-align: center;
}

.headerNavigationElement a {
    color: #000000;
    text-decoration: none;
}

.headerNavigationElement a:hover {
    color: #000000;
    text-shadow: #000000 0 0 15px;
    text-decoration: underline;
}#content {
    margin: auto;
    
    width: 85%;
    min-width: 350px;

    border: 4px solid #281107;
    background-color: #008c3e;
    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.program {
    margin: 10px;
    width: 300px;
    border: 3px solid #002951;
    background-color: #e7c33e;
}

.titleProgram {
    margin: 0px;
    
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 20px;
    color: #000000;
    font-weight: bold;
    text-align: center;
    text-decoration: underline;
}

.descProgram {
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 10px;
    
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 16px;
    color: #000000;
    font-weight: bold;
    text-align: center;
}

.linkProgram {
    margin: auto;
    margin-bottom: 5px;
    width: 100px;
    height: 32px;
    
    background-color: rgb(192, 192, 192);
    border: 3px solid rgb(92, 92, 92);
    border-radius: 5px;
    
    padding-top: 3px;
    text-align: center;
}

.linkProgram:hover {
    background-color: rgb(255, 255, 255);
    border: 3px solid rgb(128, 128, 128);
}

.linkProgram p { margin: 0px; }

.linkProgram a {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 20px;
    color: #000000;
    font-weight: bold;
}

.linkProgram a:hover {
    color: #000000;
}