main {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 112.5px; /* height of navbar */
    width: 100%;
}
.page {
    position: relative;
    height: calc(100vh - 225px); /* subtract navbar height */
    width: 100vw;
}
#footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 75.5px;
    position: fixed;
    bottom: 0;
    background-color: black;
    color: white;
    width: 100%;
}
#footer a:visited {
    color: white;
}
#footer a:hover {
    color: #888;
}
#navbar {
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: #1e1b4b;
    z-index: 3;
}
#navbar > * {
    margin: 20px;
}
#tsparticles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    transition: background-color .6s, color .6s;
    background-color: rgb(17, 17, 17);
}

.gabarito600 {
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.font60px {
  font-size: 60px;
}

.googleLogin {
    background-color: transparent;
    border: 1px solid #fff;
    height: 70.5px;
    justify-content: center;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0 15px;
    font-size: 30px;
}
a {
    color: white;
}
.googleLogin:hover {
    background-color: #3b82f6;
    color: #fff;
    transition: background-color 0.3s, color 0.3s;
}
.googleFaviconLogin {
    height: 30px;
    margin-right: 20px;
}

#slogan {
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    position: absolute;
    font-size: 120px;
    text-align: center;
    width: 90%;
}
.sloganEmphasis {
    color: #3b82f6;
}

.mobile {
    display: none;
}

@media (max-width: 975px) {
    #slogan {
        font-size: 90px;
        display: flex;
        top: 0;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        transform: translate(-50%,0);
    }
    #slogan > div {
        margin: 10px;
    }
    .desktop {
        display: none;
    }
    .googleLogin.mobile {
        display: flex;
        width: 80vw;
    }
    #navbar {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    #slogan {
        font-size: 70px;
    }
}

@media (max-width: 380px) {
    .googleLogin.mobile {
        font-size: 20px;
    }
}