html {
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    overflow: visible;
    color: rgb(48, 48, 48);
    background-color: rgb(255, 255, 255);
}

.introImage {

    height: auto;
    width: 100%;

}

h1 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.larText {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    padding-top: 25px;
}

a {

    color: white;
    text-decoration: none;
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.85, 0.44, 1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);

}

a:hover {

    color: rgb(188, 211, 255);

}

#header {

    position: sticky;
    
    top: 0;
    background-color: rgb(59, 93, 202);
    width: 100%;
    height: 70px;
    z-index: 5;

}

#underHeader {
    
    background-color: rgb(49, 72, 146);
    width: 100%;
    height: 0.5vw;

}

#headerInside {

    display: flex;
    align-items: center;
    justify-self: center;
    justify-content: space-between;

    width: 45%;
    height: 100%;

    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.2vw;
    color: white;

}

@media screen and (max-width: 1000px) {
    #headerInside {
        font-size: 14px;
        width: auto;
    }
}

#headerTable {

    display: flex;
    border-spacing: 15px;

}

.textContainer {

    display: flex;
    flex-direction: column;
    justify-self: center;
    justify-content: center;
    text-align: center;

    background-color: white;
    width: 40vw;
    height: auto;
    border-radius: 15px;
    margin-top: 40px;
    margin-bottom: 60px;
    padding: 30px 25px;
    box-shadow: 10px 10px 25px 3px rgba(18, 73, 255, 0.075);

    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}

.textContainer > .textButtonContainer {

    display: flex;

    margin: auto;
    padding-top: 30px;
    width: 120px;
    height: 40px;

}

#bottomContainer {

    position: absolute;
    overflow: hidden;
    margin-top: 150px;
    background-color: rgb(42, 65, 141);
    width: 100%;
    height: 73vh;

}

#bottomInside {

    display: flex;
    align-items: start;
    justify-self: center;
    justify-content: center;
    
    width: 100%;
    height: 100%;

    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
    color: white;

}

#bottomCopyright {

    position: absolute;
    align-content: center;
    bottom: 6%;
    width: 100%;
    height: 10%;
    text-align: center;
    font-size: 14px;

}

#copyrightLine {

    width: 33%; 
    align-self: center;

}

@media screen and (max-width: 900px) {
    #copyrightLine {
        width: 60%;
    }
}

.bottomTableContainer {

    display: flex;
    align-items: start;
    justify-self: center;
    justify-content: space-evenly;

    width: 100%;
    height: 75%;
    border-spacing: 30px;
    padding-top: 30px;

    font-size: 18px;

}

@media screen and (max-width: 1000px) {
    .bottomTableContainer {
        font-size: 14px;
        width: auto;
    }
}

a.button {

    background-color: rgb(59, 93, 202);
    border-radius: 10px;
    width: 120px;
    height: 40px;
    align-content: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    box-shadow: 4px 4px 5px 0px rgba(97, 134, 255, 0.473);

    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.85, 0.44, 1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);

}

a.button:hover {

    -webkit-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
    box-shadow: 4px 4px 10px 1px rgba(3, 56, 228, 0.5);
    background-color: rgb(27, 58, 150);
    color: rgb(188, 211, 255);

}

.img-button {

    border: 2px solid rgb(86, 113, 202);
    height: 300px;
    width: auto;
    align-content: center;

    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.85, 0.44, 1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);

}

.img-button:hover {

    -webkit-transform: scale(1.02, 1.02);
    transform: scale(1.02, 1.02);
    box-shadow: 4px 4px 10px 1px rgba(103, 124, 194, 0.24);

}

.gridContainer {

    display: flex;
    flex-wrap: wrap;
    height: 50%;
    width: 50%;
    justify-content: space-evenly;
    justify-self: center;
    grid-template-columns: auto auto auto auto;
    grid-template-rows: auto auto;
    margin-top: 50px;
    margin-bottom: 60px;

}

.gridContainer > a > img {

    border: 2px solid rgb(114, 136, 207);
    width: 150px;
    height: auto;
    opacity: 0.9;
    margin-bottom: 3px;

}