@charset "utf-8";
/* CSS Document */

body {
	background: linear-gradient(180deg, rgba(1,128,61,0.5046393557422969) 0%, rgba(1,127,128,0.5046393557422969) 100%);
}

main {
    width: calc(95% - 40px);
    padding: 20px;
    margin: 20px 2.5%;
    background-color: #fefefe;
}

main section {
    margin: 100px auto 20px;
    border-bottom: 10px solid var(--base-color);
}

main h1 {
    text-decoration: underline;
    text-decoration-color: var(--base-color);
}

nav {
    height: 60px;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(1,128,61,1) 0%, rgba(1,127,128,1) 70%);
    display: flex;
    justify-content: space-between;
}

nav .logo {
    height: 60px;
}

nav .logo img {
    height: 90%;
    margin: 2px 10px;
}

nav .language {
    height: 60px;
    display: flex;
    align-items: center;
}

nav .language a {
    color: #fefefe;
    margin: 0 20px;
    text-decoration: none;
    font-size: 10pt;
}

footer {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

footer .copyright {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fefefe;
    font-size: 10pt;
    margin: 20px 0;
    margin-top: 50px;
    transform: translateY(15px);
    width: 100%;
    text-align: center;
}

footer .logo {
    height: 50px;
    margin-left: 30px;
}

footer .logo img {
    height: 100%;
}

footer .to-top button {
    border: none;
    width: 40px;
    height: 40px;
    margin-right: 30px;
    background-color: var(--base-color);
    color: #fefefe;
    cursor: pointer;
}