html,body {
    background-color: #1d2938;
    margin: 0;
    height: 100%;
}
.Home_Page_Container {
    display: flex;
    flex-direction: column;
    
    height: 100%;
}
.Home_Page_Title {
   
    height: auto;
    width: 100%;
    display: flex; 
    justify-content: center;
    align-items: center;
}
.Home_Page_Title img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.Home_Page_Main_Content {
    height: auto;
    max-width: 100%;
    display: flex;  
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-color: red;
    background-size: cover;
    background-repeat: no-repeat;
    
}