:root {
    --red : #A80000;
    --green: #005D04;

}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}
a{
    font-size: 14pt;
    text-decoration: none;
    color: var(--red);
}
a:hover{
    cursor:pointer;
    text-decoration: underline;
}
p{
    margin: 10px 0;
    line-height: 1.3;
}
header h1{
    margin-bottom: 5px;
}
.subtitle{
    margin: 0;
    text-orientation: sideways;
    text-align: center;
}
h2 + ul{
    width: 100%
}

#headerSpace {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*margin: 0 15px;*/
}
    .headerPictureAndName{
        display: flex;
        width: 250px;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
    }
        .profilePic{
            border-radius: 100%;
            border: solid black 2px;
            width: 40px;
        }
    .headerPages{
        display:flex;
        align-items: center;
        justify-content: right;
        height: 100%;
    }
        .headerPages a{
            padding:0 10px;
            height: 100%;
            align-items: center;
            display: flex;
            color: black;
        }
    .headerText{
        font-weight: 500;
        font-size: 20px;
        text-align: center;
        color: black;
    }
    .langImg{
        border-radius: 100%;
        border: 2px solid black;
    }
    @keyframes headerHover{
        from {color: black;}
        to {color: var(--red);}
    }
    #headerSpace a:hover{
        animation-name: headerHover;
        animation-duration: 300ms;
        animation-fill-mode:both;
    }
    #headerSpace a:left{
        animation-name: headerHover;
        animation-duration: 250ms;
    }
/*Articles*/
.articleBody{
    gap: 10px;
}
.articleBody h2{
    text-align: left;
    width: 100%;
    margin-bottom: 0px;
}
.articleBody h3{
    text-align: left;
    width: 100%;
    margin-bottom: 0px;
}
.articleBody p, ul{
    width: 100%;
}

.centerPic{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.centerPic img{
    max-width: 800px;
    max-height: 600px;
}
.centerPic p{
    margin-top: 3px;
    font-size: 15px;
}

/* Home */
.banner{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.bannerPic{
    width:100%;
    margin-bottom: -135px;
}
.bigProfilePic{
    border-radius: 100%;
    border: solid black 3px;
    width: 270px;
}
.welcomeTextDiv, .articleBody{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10% 15px 10%;
}
    .welcomeTextDiv h1{
        font-size: 30px;
        margin: 15px 0;
    }
    .welcomeTextDiv p{
        text-align: center;
    }
    .links{
        display:flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        margin: 15px 0px;
    }
        .darkRed{
            color: var(--red);
        }
        .insta, .ytb{
            display:flex;
            justify-content: left;
            align-items: center;
            gap: 10px;
            margin: 5px 0;
        }
        .ytb{
            color: #FF0000;
        }
        .insta{
            color:#C13584;
        }

.adventuresHomeDiv{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}
.adventuresHolder{
    width: 90%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
    .adventuresTitle{
        font-size: 25px;
        color: var(--green);
        margin: 15px 0;
    }
    .adventureTile{
        border-radius: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border: 1px solid black;
        width: 45%;
        max-width: 700px;
        min-width: 500px;
    }
    .adventurePicture{
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
        width:100%;
    }
    .adventureText{
        margin: 10px 15px;
    }
    .adventureTitle{
        margin: 5px 0;
        font-size: 30px;
    }
    .adventureParagraph{
        margin: 0;
    }
    .adventureLink{
        color:var(--green); 
        font-size: 20px;
        margin: 20px;
    }

.footer{
    display:flex;
    justify-content: space-evenly;
    align-items: center;
    border-top: 1px black solid;
    padding: 10px 0;
}
 .footerLinks{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
 }

 .footer p a{
    font-weight: bold;
 }
