body {
    background-color: #6A994E;
    margin: 0px;
    height: 100%;
    width: 100%;
    font-family: "Lato", sans-serif;
    user-select: none;
}

.top {
    padding: 70px 70px;
    height: 35%;
    background-color: #F2E8CF;
    color: #6A994E;
    font-size: 80px;
    font-weight: bold;
}

h2 {
    margin: 70px;
    color: #F2E8CF;
    font-size: 60px;
    font-weight: bold;
}

.LanguageSelector {
    color: #6A994E;
    font-size: 15px;
    text-decoration: none;
    padding: 15px;
    border: #6A994E 4px solid;
    background-color: #F2E8CF;
    position: absolute;
    right: 40px;
    top: 40px;
    text-align: center;
    font-weight: bold;
}

.LanguageSelector:hover {
   background-color: #386641;
   color: #F2E8CF;
   cursor: pointer;
}
.ProjectLink {
    margin-left: 70px;
    margin-top: 70px;
    color: #F2E8CF;
    font-size: 25px;
    text-decoration: none;
    padding: 25px;
    border: #F2E8CF 4px solid;
}

.ProjectLink:hover {
    background-color: #386641;
}

.LanguageOption {
    color: #6A994E;
    font-size: 15px;
    text-decoration: none;
    padding: 15px;
    border: #6A994E 4px solid;
    background-color: #F2E8CF;
    position: absolute;
    text-align: center;
    font-weight: bold;
    display: none;
}

.LanguageOption:hover {
    color: #F2E8CF;
    background-color: #386641;
}

#ptbr {
    right: 40px;
    top: 100px;
}

#en {
    right: 40px;
    top: 160px; 
}

@media only screen and (max-width: 800px) {
    .top {
        text-align: center;
        padding: 30px 30px;
        font-size: 70px;
    }

    h2 {
        font-size: 50px;
        margin: 40px;
        display: flex;
        justify-content: center;
    }

    .ProjectLink {
        font-size: 20px;
        padding: 18px;
        margin: 20px auto;
        width: 80%;
        display: flex;
        justify-content: center;
    }

    .LanguageSelector {
        font-size: 10px;
        padding: 10px;
        right: 10px;
        top: 10px;
    }

    .LanguageOption {
        font-size: 10px;
        padding: 10px;
    }
}