*{
    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;
    color: #EDF5E1;
}

.block{
    background-color: #05386B;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgb(0, 0, 0);
    transition: 1s;
    backdrop-filter:blur(7px) ;

}

.block1{
    background-color: #b3b3b380;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.315);
    transition: 1s;
    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: #358de4;
transform: scale(1.02);
transform: rotate(1.02);
}

.news_desc{
    margin-top: 10px;
    margin-bottom: 10px;
}

about_desc{
    margin-top: 10px; 
}

.news_date{
    margin-top: 10px;
    margin-bottom: 10px;
}

h3{
    margin-top: 10px; 
}

#theme_button{
    background-color: #358de4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: #a3a3a3;
    transition: 0.3;
}

#theme_button:hover{
    background-color: #358ce490;
    transform: scale(1.05); 
    color: #000000;  
}