*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2em 1.8em;
    box-shadow: 0 1px 5px rgba(1, 1, 1, 15%);
}

.header-img{
    width: 4em;
    padding-right: .8em;
}

.navigation a{
    text-decoration: none;
    padding-left: 30px;
    color: #212121;
    font-weight: 700;
    transition: 0.3s ease;
}

.navigation a:hover{
    color: #006241;
}

.logo-side {
    display: flex;
    align-items: center;
}

.other-side {
    display: flex;
    align-items: center;
}

.other-side  a{
    padding-left: 1.1em;
}

.location {
    color: #212121;
    text-decoration: none;
    padding-right: .8em;
    transition: 0.3s ease;
}

.location:hover {
    color: #006241;
}

.location i{
    padding-right: 0.4em;
    font-size: 1.3125em;
}

.location span{
    font-weight: 500;
}

.sign-btn {
    padding: .4em 1.2em;
    border: 0.1em solid #212121;
    border-radius: 1.9em;
    background-color: #fff;
    color: #212121;
    font-weight: 700;
    font-size: 0.875em;  
    transition: 0.3s ease; 
}

.sign-btn:hover {
    background-color: rgb(233, 233, 233);
    cursor: pointer;
}

.sign-btn:active {
    transform: translateY(0.0625em);
}

.join-btn {
    padding: .6em 1.2em;
    border: 1px solid black;
    border-radius: 1.9em;
    color: #fff;
    background-color: black;
    font-weight: 700;
    font-size: 0.875em;
    transition: 0.3s ease;
}

.join-btn:hover {
    background-color: #333333;
    cursor: pointer;
}

.join-btn:active {
    transform: translateY(0.0625em);
}

section {
    margin-top: 1.9em;
    display: flex;
}

.img {
    width: 50%;
    min-height: 63vh;
    background-size: cover;
}

.content {
    width: 50%;
    background-color: #d4e9e2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
    text-align: center;
}

.content h1{
    color: #1e3932;
    padding: 1.1em;
    font-weight: 700;
    font-size: 1.5625em;
}

.content p{
    color: #1e3932;
    font-size: 1.25em;
    padding: 1.1em;
    font-weight: 400;
}

.content button {
    padding: .4em 1.2em;
    border: .1em solid #1e3932;
    border-radius: 1.9em;
    color: #1e3932;
    background-color: #d4e9e2;
    font-weight: 700;
    font-size: 1em;
    transition: 0.3s ease;
}

.content button:hover {
    background-color: #c5dad2;
    cursor: pointer;
}

.menu-content{
    width: 50%;
    background-color: #006241;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
    text-align: center;
}

.menu-content h1 {
    color: #fff;
    padding: 1.1em;
    font-weight: 700;
    font-size: 1.5625em;
}

.menu-content p{
    color: #fff;
    font-size: 1.25em;
    padding: 1.1em;
    font-weight: 400;
}

.menu-content button{
    padding: .4em 1.2em;
    border: .1em solid #fff;
    border-radius: 1.9em;
    color: #fff;
    background-color: #006241;
    font-weight: 700;
    font-size: 1em;
    transition: 0.3s ease;
}

.menu-content button:hover {
    background-color: #509981;
    cursor: pointer;
}

.body h1{
    font-size: 3.5em;
    font-weight: 500;
    padding: .3em 1.5em;
}

.body p{
    font-size: 1.6em;
    padding: 0 3.5em 1.2em 3.5em;
}

.information {
    box-shadow: 0 -1px 5px rgba(1, 1, 1, 15%);
    padding-left: 2em;
    display: flex;
    justify-content: start;
    align-items: start;
}

.information div {
    padding: 2em 1.5em;
}

.information h2 {
    margin-bottom: 1.2em;
    font-size: 1.3em;
    font-weight: 400;
    color: #1d1e20;
    
}

.list li {
    list-style: none;
    margin-bottom: 1.2em;
    color: #7b7c8f;
}

footer {
    border-top: 2px solid lightgrey;
    margin: 0 3em;
    box-shadow: none;
    padding: 2em 0 4em 0;
}

.icons a{
    font-size: 2em;
    color: #212121;
    padding-right: .4em;
    border-radius: 50%;
}

.rules {
    display: flex;
    margin: 1.5em 0;
}

.rules h3{
    border-right: 1px solid #212121;
    color: #212121;
    font-weight: 400;
    font-size: 1em;
}

.rules h3:nth-child(1) {
    padding-right: 1em;
    padding-left: 0;
}

.rules h3:nth-child(n + 2) {
    padding: 0 1em;
}

.rules h3:nth-child(4) {
    border: none;
}