*{
    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: #242582 ;
    color: white;
    
}

.blog{
    background-color: #2F2FA2;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow:0 0 15px rgba(0, 0, 0, 0.338) ;
}


.block1{
    background-color: #9595a37b;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow:0 0 15px rgba(0, 0, 0, 0.159) ;
}

.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{
  max-width: 300px;
  min-width: 300px;
  margin-left: 20px;
}

.news{
   
}

h2{
    font-size: 40px;
}

footer{
    text-align: center;
}

.blog img{
    width: 100%;
    border-radius: 5px;
}

.newsblock img{
    height: 50px;
    overflow: hidden;
    object-fit: cover;
}

.blog:hover{
    box-shadow: 0 0 10px #99738e ;
    transition: 0.3s;
    transform: scale(1.02);
   
}

.news_desc{
    margin-top: 10px;
}

.news_date{
    margin-top: 10px;
    margin-bottom: 10px;
}

.about_desc{
    margin-top: 10px;
}

h3{
    margin-bottom: 10px;
}

#theme_button{
    background-color: #f64c72;
    border-radius: 5px;
    width: 100px;
    height: 50px;
    margin: 50px;
    font-size: 20px;
    text-align: center;
    box-shadow:0 0 20px #ff0037;
    transition: 0.3s;
}

#theme_button:hover{
    background-color: #ff0037;

}


