*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Font";
    src: url(/Montserrat-VariableFont_wght.ttf);
}

body{
    font-family: "Font";
    background-color: #5CDB95;
    background-image: url(/images/4.jpg);
    color: #EDF5E1;
}

.block{
    background-color: #05386B;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px black;
    transition: 0.3s;
}

.block1{
    background-color: #d3d3d336;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.312);
    transition: 0.3s;
    backdrop-filter: blur(7px);
}

.wrap{
    width: 1200px;
    margin: 0 auto;
}

header{
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-direction: column;
}

h1{
    font-size: 70px;
}

section{
    display: flex;
    justify-content: space-between;
    
}

.right-side{
    min-width: 300px;
    max-width: 300px;
    margin-left: 20px;
}

.news{
    
}

h2{
    font-size: 40px;
}

footer{
    text-align: center;
}

.block img{
    width: 100%;
    border-radius: 5px;
}

.newsblock img{
    height: 50px;
    overflow: hidden;
    object-fit: cover;
}

.block:hover{
    box-shadow:0 0 10px #EDF5E1;
    transform: scale(1.02);
}

.news_desc{
    margin-top: 10px;
}
.about_desc{
    margin-top: 10px;
}
.news_date{
    margin-top: 10px;
    margin-bottom: 10px;
}

h3{
    margin-bottom: 10px;
}

#theme_button{
    background-color: #5cdb959d;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10  px rgba(0, 0, 0, 0.31);
    transition: 0.3s;
}

#theme_button:hover{
    background-color: #5cdb95;
    transform: scale(1.05);
    color: black;
}
