body {
    margin: 0;
    font-family: 'Dosis', sans-serif;
    padding-top: 40px;
}

.indexNav {
    background-color: rgb(0, 0, 100);
    display: flex;
    margin: 0;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    align-items: center;
    justify-content: space-around;
    position: fixed;
}

.menuNav {
    margin: 5px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: white;
    font-weight: 500;
    font-size: 20px;
    text-decoration: none;
}

.menuNav:hover {
    background-color: rgb(50, 50, 100);
    cursor: pointer;
    font-weight: 500;
}

.mainContent {
    padding: 50px;
}

.independentLink {
    text-decoration: none;
    font-weight: 700;
    font-stretch: ultra-expanded;
    background-color: red;
    color: white;
    padding: 10px;
}

.independentLink:hover {
    font-size: 30px;
}