html,body{
    width:100%;
    height:100%;
    display: flex;
    /*justify-content: center;*/
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
    
}

header{
    width: 100%;
    height:10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 3em;
    border-bottom: 1px solid black;
    background-color: rgba(0, 0, 0, 0.95);
    color: white;
}

#navbar{
    width: 100%;
    height: 5vh;
    display: flex;
    flex-direction: row;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
}

.navbar-element{
    width: 25%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    border: 1px solid black;
    cursor: pointer;
    transition: all .3s ease-in-out;
    position: relative;
}

.navbar-element:hover{
    background-color: rgba(0, 0, 0, 0.5);
}

.navbar-element:hover>.dropdown{
    display: flex;
    flex-direction: column;
}

.dropdown{
    position: absolute;
    width: 100%;
    height: 10vh;
    left: 0;
    top: 100%;
    background-color: rgba(0,0,0,.7);
    display: none;
    border-radius: 10px;
    justify-content: space-around;

}



.dropdown-element{
    display: flex;
    justify-content: center;
    align-items: center;
    /*background-color: rgba(0,0,0,.3);*/
    color: white;
    border-bottom: 1px solid rgba(255,255,255,.7);
}



main{
    height: 80vh;
    width: 60%;
    display: flex;
    flex-direction: row;
    background-color: rgb(0,0,0,.1);
}

#main-left,
#main-right{
    height: 100%;
    
}

#main-left{
    width: 70%;
    
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    /*align-items: center;*/
    padding: 1em;
}

#main-left>h1{
    width: 100%;
    box-sizing: border-box;
    padding-left: 0.5em;
}
#main-left>h3{
    width: 100%;
    box-sizing: border-box;
    padding-left: 0.5em;
    margin-top: 50px;
}

#main-left>img{
    width: 90%;
    height: auto;
    border-radius: 10px;
    background-color: rgba(9,0,0,.1);
}

#main-left>span{
    width: 90%;
    height: 15%;
    box-sizing: border-box;
    padding:1em;
}
ul{
    width: 80%;
    margin-bottom: 50px;
    list-style: none;}
li {
    margin-bottom: 30px;
}



#main-right{
    width: 30%;
    
    box-sizing: border-box;
    padding: 1em;
    display: flex;
    flex-direction: column;
    /*gap: 1em;*/
    justify-content: space-around;
    position: sticky;
}

.article-bttn{
    width: 90%;
    height: 10%;
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    border-radius: 10px;
    border: 1px solid black;
    box-sizing: border-box;
    padding: 1em;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.article-bttn:hover{
    background-color: rgba(0,0,0,.3);
}




#main{
    overflow-y: auto;
    background-color: 	rgba(156, 156, 158, 0.1);
    scrollbar-width: none;
}

footer{
    height: 5vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.89);
    color: white;
    font-size: 0.8em;
    display: flex;
    justify-content: center;
    align-items: center;   
}