body{
    margin: 0px;
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
}
main {
    margin: 20px;
}


header {
    background-color: white;
    --headerHeight: 100px;
    height: var(--headerHeight);
    width: 100%;
    display: flex;
    position: fixed;
    top: 0;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 5px 3px rgb(51, 51, 51);
}

header h1{
    display: inline;
    text-align: center;
}

/*
#title1{
    text-align: center;
}
*/

.news{
    /*
    background-color: rgb(235, 140, 140);
    */
    border-top: 10px solid rgb(46, 44, 44);
    margin: 5px;
    padding: 5px;
    text-align: center;
}
.news img{
    max-width: 95%;
    max-height: 450px;
}



.navbar ul{
    list-style-type: none;
    background-color: rgb(54, 160, 231);
    /*
    
    border-style: solid;
    border-width: 5px;
    border-color: black;
    */
    border-top: 5px solid black;
    border-bottom: 5px solid black;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
    width: 100%;
}
.navbar a{
    color: black;
    text-decoration: none;
    display:block;
    padding: 20px;
    text-align: center;
    font-size: 30px;
}
.navbar li {
    float: left;
}
.dropdown{
    padding-right: 5px;
    display: inline-block;
}
.dropdown button {
    height: var(--headerHeight);
    width: var(--headerHeight);
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.dropdown a{
    display: block;
    color: black;
    
    text-decoration: none;
    padding: 10px 15px;
}
.dropdownContentText {
    border-bottom: 1px dashed black;
}
.dropdown .content{
    text-align: center;
    display: none;
    position: absolute;
    background-color: white;
    /*min-width: 100px;*/
    width: 60%;
    box-shadow: 0px 5px 5px 3px rgb(51, 51, 51);
    left: 50%;
    top: 220%;
    transform: translate(-50%, -50%);
}
.document {
    height: 550px;
    width: 80%;
}
/*
.dropdown:hover .content{
    display: block;
}
*/
