body{
    
    font-family: Arial, sans-serif;
    background-color: #FDFBA7;
}
h1{
    color:#1F2937;
    text-align:center;
}
header{
    background-color:#BF2130;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
}
.menu{
    background-color: lightgray;
    padding: 10px 50px 10px 50px;
    border-radius: 5px;
    display: flex;
}
.logo{
    width: 50px;
    height: 50px;
    background-color: transparent;
    display:flex;
    justify-content: flex-start;
}
.content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding:12px;
}
.calendar{
    width: 50%;
    padding: 20px;
    border:1px solid black;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
    height: 110px;
    
}
.news{
    width: 50%;
    padding: 20px;
    border:1px solid black;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-left: 20px;
    height: 110px;

}
.content1{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding:40px 20px 40px 20px;
}
.calendar ul li a:hover,
.news ul li a:hover {
    color: red;
}
.calendar ul li a,
.news ul li a {
    text-decoration: none;
    color: #1F2937;
}
/* Mobil */
@media (max-width: 767px) {
    header,
    .content,
    .content1 {
        flex-direction: column;
        align-items: stretch;
    }

    .menu {
        padding: 10px 16px;
        width: 100%;
    }

    .calendar,
    .news {
        width: 100%;
        padding: 12px;

    }

    .content {
        padding: 12px;
    }

    .content1 {
        padding: 20px 12px;
    }

    .header-text h1 {
        font-size: 1.8rem;
        padding: 0 12px;
    }
}
