/* Base */
body {
    background-color: black;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

header{
    color: rgb(202, 218, 232);
}

main{
    display: flex;
    padding: 50px;
    flex-direction: column;
    align-items: center;
}

footer{
    margin-top: -30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

img {
    max-width: 100%;
    height: auto;
}

button{
    color: aliceblue;
    background-color: grey;
    border-radius: 25px;
    padding: 15px;
    border: none;
}

button:hover{
    background-color: rgb(82, 100, 117);
    cursor: pointer;
}

/* Components: */

/* HEADER COMPONENTS: */
.navbar-container{
    background-color: rgb(12, 13, 14);
    font-size: 1.5rem;
    padding: 10px;
    border-radius: 20px 20px 0 0;
    
    
    display: flex;
    justify-content: space-between;
    align-items: center;

    position: sticky;
    top: 0;
    z-index: 999;
}

.website-name{
    margin-left: 50px;
}

.navbar ul{
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 90px;
    flex-wrap: wrap;
}

.navbar a{
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: rgb(202, 218, 232);
}

.title-section{
    background-color: rgb(28, 28, 38);
    font-size: 3rem;
    height: 350px;
    border-radius: 0 0 20px 20px;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MAIN COMPONENTS */
main h1{
    color: aliceblue;
    font-size: 3rem;
}

main h3{
    color: aliceblue;
    font-size: 1.5rem;
    margin-top: 10px;
    margin-bottom: 10px;
}

main a {
    color: rgb(56, 175, 175);
}

main p,ul{
    color: rgb(200, 211, 220);
    line-height: 1.5;
    font-size: 1.1rem;
}

main ul{
    margin: 0;
    padding-left: 20px;
    list-style: square;
}

.split{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.split > div {
    flex: 300px;
}

.box{
    max-width: 700px;
    flex-wrap: wrap;
}

/* FOOTER COMPONENTS */
footer hr{
    width: 40%;
    border: none;
    height: 2px;
    background-color: rgb(87, 74, 74);
}

footer h1{
    flex: 1;
    justify-content: center;
    color: rgb(110, 135, 158);
}
