*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

header{
    background-color: tomato;
    display: flex;
    height: 130px;
    align-items: center;
    justify-content: space-between;
    padding: 0px 25px;

}

header div img{
    width: 50%;
    border-radius: 15px;
    display: flex;
}

header nav{
    flex: 2;
}

header nav a{
    text-decoration: none;
    text-transform: uppercase;
    color:black;
    font-weight: bold;
    font-size: 18px;
} 
/* set font-size to 11px in Mobile view */

header nav a:hover{
    color: grey;
}

header h1{
    flex: 1;
}

header ul{
    display: flex;
    justify-content: space-between;
}

header li{
    list-style-type: none;
}

main{
    display: flex;
    background-color: lightgray;
    padding: 25px;
    gap: 25px;
}
body{
    height: 100vh;
    background-color: gray;
}

.content_backdrop{
    display: flex;
    padding: 20px; /* Ensures space inside the container */
    box-shadow: 3px 3px 10px #3b3b3b;
    flex-grow: 1;
    background-color: white;
    gap: 25px;
    min-height: calc(96vh - 130px - 300px);
    flex-direction: column;
}

.info_backdrop{
    display: flex;
    padding: 20px;
    box-shadow: 3px 3px 10px #3b3b3b;
    flex-grow: 1;
    gap: 25px;
    background-color: white;
    flex-direction: column;
}

.Page_header{
    display: flex;
    padding: 20px;
    box-shadow: 3px 3px 10px #3b3b3b;
    background-color: #ecf7fc;
    gap: 25px;
    
}
.content{
    display: flex;
    padding: 20px;
    box-shadow: 3px 3px 10px #3b3b3b;
    background-color: #ecf7fc;
    flex-direction: column;
}
.Info-content{
    display: flex;
    padding: 20px;
    box-shadow: 3px 3px 10px #3b3b3b;
    background-color: #ecf7fc;
    flex-direction: column;
}

.info{
    display: flex;
    padding: 20px;
    box-shadow: 3px 3px 10px #3b3b3b;
    max-width: 530px;
    min-width: 530px;
    background-color: #ecf7fc;
    flex-direction: column;
}

section h2{
    flex: 1;
}
section p{
    max-height: 110px;
    overflow: hidden;
}

aside {
    flex: 1;
    height: 110px;
    width: 210px;
}

aside h2{
    flex: 1;
}

address{
    margin-bottom: 15px;
}
.info h2{
    flex: 1;
}

footer{
    background-color:darkgrey;
    position: fixed;
    bottom: 0px;
    right: 0px;
    left: 0px;
    color: white;
    height: 300px;
}

footer p{
    text-align: center;
    line-height: 50px;
}

.Info-box{
    display: flex;
    padding: 20px;
    box-shadow: 3px 3px 10px #3b3b3b;
    background-color: #ecf7fc;
    flex-direction: column;
}

article.front_page{
    display: flex;
    gap: 15px;
}

section{
    flex: 1;
    
}

.articleDTG{
    flex: 0;
    max-width: 100px;
    min-width: 100px;
}

.articleDTG time{
    display: block;
    box-shadow: 2px 2px 5px black;
}

.articleMonth{
    border: 3px solid tomato;
    border-radius: 10px 10px 0 0;
    padding: 5px;
    text-align: center;
    font-size: 35px;
}

.articleDay{
    border: 3px solid tomato;
    border-radius: 0 0 10px 10px;
    padding: 5px;
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    background-color: tomato;
    color: white;
    text-shadow: 2px 2px 5px black;
}