    body{
        margin: 0;
    }
    .main_window{
        overflow: auto;
        display: flex;
        height: 100vh;
        width: 100vw;
    }

    .main_grid{
        display: grid;
        height: 700px;
        width:800px;
        margin: auto;
        
        align-self: center;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
        overflow: hidden;
    }
    
    #main_background{
        grid-column: 1/7;
        
        grid-row: 1/7;
        background-image: url("../Assets/Images/main_bkg.png");
        filter:contrast(0.90);
        border-radius: 5px;
        z-index: 0;
    }

    #main_image{
        grid-column: 1/4;
        grid-row: 3/7;
        height:100%;
        width:100%;

        display: flex;
        

        z-index: 1;
    }

    #main_image > img{
        width: 380px;
        margin: 30px;
       
        align-self: flex-end;

    }

    #main_menu{
        grid-column: 5/7;
        grid-row:3/7;

        display: flex;
        flex-direction: column;
        
        align-items: flex-end;
        justify-content: center;
        text-align: right;
        
        padding-right: 28px;
        z-index: 1;
    }

    a{
        text-decoration: none;
    }

    #main_menu > a{
        width: 65%;
        margin-top: 50px;
        border-bottom: 2px solid white;
        font-size: 15pt;
        color: white;
    }

    #main_menu >a:hover{
        color : black;
        background-color: white;

    }

    #main_title{
        grid-column: 1/7;
        grid-row:1/3;
        z-index: 1;
        color: white;
        padding: 40px;
        overflow: clip;
    }

    #main_title >h1{
        margin: 20px;
        font-size: 40pt;
        font-weight: 100;
    }

    #landing_text{
        grid-column: 2/6;
        grid-row: 2/6;
        padding: 10px;
        text-align: center;
        text-justify: distribute;
        overflow: scroll;
        scrollbar-width: none;
    }

    #landing_text h3{
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    }

    #landing_text p{
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }
    
    #landing_enter{
        display: flex;
        grid-column: 3/5;
        grid-row:5/6;
        align-items: center;
        justify-content: center;
    }

    #landing_enter a{
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-size: larger;
        padding: 10px;
        border-bottom: 2px dashed black;
        text-decoration: none;
    }

    #date{
        grid-column:6/7;
        grid-row:1/2;
        padding: 10px;
        padding-top:40px;
        color:white;
        z-index: 3;
    }
