@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

*{ /* Default for all items to use unless overwite */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body{
    background-color: #b4d5f9;
    background: linear-gradient(to right, #e2e2e2, #b4d5f9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    background: rgba(67, 125, 247, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header-branding {
    display: flex;
    align-items: center;
}

.header-branding a {
    padding: 0% 0% 0% 20px;
    color: black;
}

.tabBar-logo {
    font-size: 25px;
    color: #ededed;
    text-decoration: none;
    font-weight: 800;
}

.navbar a {
    font-size: 18px;
    color: black;
    text-decoration: none;
    font-weight: 500;
    margin-left: 20px;
    transition: 0.3s;
}

.navbar a:hover {
    color: rgb(115, 158, 250);
    transition: 0.2s;
    font-weight: 900;
}

.home-page {
    display: flex;
    height: 100vh;
    padding: 10px 0 0 0;
}

.coverPage-content {
    display: flex;
    align-items: center;
    /* padding: 0px 0px 0px 10vh; */
}

.coverpage-text {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 10%;
}

.coverpage-text h1 {
    font: 60px Arial, bold, sans-serif;
    font-weight: 900;
    padding: 0 0 40px 0;
}

.coverpage-text p {
    padding: 10px 0;
}

.CoverPage-Logo {
    justify-content: flex-end;
}