body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    height: 100vh;
    width: 100vw;
}




.container {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    grid-template-rows: 120px 1fr 80px;
    grid-template-columns:1fr 8fr 1fr;
    grid-gap: 8px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('images/background1.jpg');
    background-position: center;
    background-attachment: scroll;
    grid-template-areas: 'header header header' 'main main main' 'footer footer footer';
    display: grid;
}
header {
    grid-area: header;
    background-color: rgb(108, 108, 245);
    display: grid;
    height: 100px;
    
}

.main {
    grid-area: main;
    display: grid;
    margin: auto;
    height: 100%;
    width: 100%;
}

footer { 
    grid-area: footer;
    display: grid;
    margin: auto;
}

.navbar {
    list-style-type: none;
    overflow: hidden;
    text-decoration: none;  
    
}

.logo {
    list-style-type: none;
    overflow: hidden;
    float: left;
    text-decoration: none;
    vertical-align: middle;
    margin-top: 5px
}

.links {
    list-style-type: none;
    overflow: hidden;
    float: right;
    text-decoration: none;
    vertical-align: middle;
    margin-top: 30px;
}

.navbar, li {
    float: left;
    font-size: 20px;
}

.navbar, a {
    text-decoration: none;
    color: black;
    display: block;
    padding: 14px;
    text-align: center;
    margin-top: -10px;
    
}

.mainLogo {
    height: 75px;
    margin: 0 auto;
    padding: 0;
}

.navbar, a:hover {
    color: rgb(255, 255, 255);
}


.main-content {
    float: left;
    width: 75%;
  }


.welcomeBox {
    height: 40vh;
    width: 55vh;
    background-color: rgb(108, 108, 245);
    border-radius: 2vh;
    box-shadow: 2px 2px 10px;
    position: static;
    float: left;
    margin-top: 200px;
    margin-left: 200px;
}

#welcomeText {
    margin-left: 10px;
    font-size: 22px;
}

#headerText {
    margin-top: 15px;
    margin-left: 150px;
}

.imageBox1 {
    background-image: url("images/welcomeImage1.jpg");
    height: 40vh;
    width: 55vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    border-radius: 2vh;
    box-shadow: 2px 2px 10px;
    margin-top: -470px;
    margin-left: 1200px;
}

.imageBox2 {
    background-image: url("images/image1.jpg");
    height: 40vh;
    width: 55vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    border-radius: 2vh;
    box-shadow: 2px 2px 10px;
    margin-top: 200px;
    margin-left: 200px;

}

.imageBox3 {
        background-image: url("images/image2.jpg");
        height: 40vh;
        width: 55vh;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
        border-radius: 2vh;
        box-shadow: 2px 2px 10px;
        margin-top: -420px;
        margin-left: 1200px;
}

.imageBox4 {
    background-image: url("images/image3.jpg");
    height: 40vh;
    width: 55vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    border-radius: 2vh;
    box-shadow: 2px 2px 10px;
    margin-top: -10px;
    margin-left: 1200px;
}


.imageBox5 {
    background-image: url("images/image4.jpg");
    height: 40vh;
    width: 55vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    border-radius: 2vh;
    box-shadow: 2px 2px 10px;
    margin-top: -300px;
    margin-left: 200px;

}
