﻿html {
    height: 100%;
    width: auto;
    margin: 0px;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

body {
    height: 100%;
    width: auto;
    margin: 0px;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

#form1 {
    height: 100%;
    width: auto;
    margin: 0px;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}



/*****/
#MasterWrapper {
    height: 100%;
    width: auto;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 1fr;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

#Header {
    background-color: black;
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    display: grid;
    grid-template-columns: 350px 1fr;
}

#Content {
    background-color: ghostwhite;
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

#Footer {
    background-color: black;
    grid-row: 3 / 4;
    grid-column: 1 / 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
}


/******HEADER*******/
 #LogoLink {
     flex: 0 0 auto;
     width: 300px;
     display: flex;
     justify-content: center;
     align-items: center;
     grid-column: 1 / 2;
     grid-row: 1 / 2;

 }

#MenuBox {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 300px;

}

#Menu1 {
    min-width: max-content !important;
    font-size: 26px;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

#Menu1 ul li, #Menu1 a {
    text-decoration: none;
    color: white;
    margin: 10px;

}
/******CONTENT*******/



/******FOOTER*******/

#FooterLinksBox {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-left: 100px;
}

#Center {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

#FooterCopyBox {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    display: flex;  
    justify-content: right;
    align-items:center;
}


.FooterLink {
    color: white;
    font-size: 24px;
    margin: 15px auto;
}

.FooterCopy {
    color: white;
    margin-right: 30px !important;
}

/*****ELEMENT AND CONTROLS***/

.LogoButton, .LogoButton img {
    width: 250px;
}