* {
    padding: 0;
    margin: 0;
    top: 0;
    scroll-behavior: smooth;
}

nav {
    background-color: transparent;
    padding: 2%;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #FAFEFC;
    border-bottom: 1px solid #35463b;
    display: flex;
    justify-content: space-between;
    height: 5%;
}

.nav-title-section {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 20%;
}

.nav-title-section img {
    border-radius: 50%;
    margin-right: 2%;
}

.links {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    width: 35%;
}

.link-href:link, .link-href:visited {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #FAFEFC;
    text-decoration: none;
    padding: 2% 2vh;
    background-color: transparent;
    font-weight: bold;
    max-width: 20%;
    min-width: 20%;
    transition: background-color 0.5s, color 0.5s;
    border-radius: 10px;
    font-weight: bold;
}

.link-href:hover {
    background-color: #37da70;
    color: black;
}

.main_page {
    width: 100%;
    height: auto;
    background-color: #273F34;
}

.intro {
    display: flex;
    justify-content: space-evenly;
    margin-top: 5%;
}

.img-wrapper, .information {
    max-width: 45%;
    min-width: 45%;
}

.img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.information h2 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 400%;
    text-align: center;
    color: #FAFEFC;
    margin-top: 10%;
}

.information p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    font-weight: 100;
    text-align: left;
    color: #caffe4;
    text-indent: 5%;
    margin-top: 10%;
}

#second-page {
    padding: 10% 0%;
}

#second-page a:link, #second-page a:visited {
    text-decoration: none;
    color: #caffe4;
    transition: color 0.5s;
    font-size: larger;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
} 

#second-page .img-wrapper {
    margin-top: 5%;
}

ul {
    margin-top: 5%;
}

li {
    margin-top: 1%;
}

#second-page a:hover {
    color: #48ba7f;
} 