@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

img.topGG {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f100;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #00cba9;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #00cba9;
}

body {
    min-height: 100vh;
    background: #fff;
}

.navigation {
    position: fixed;
    top: 20px;
    left: 20px;
    bottom: 570px;
    width: 70px;
    border-radius: 15px;
    box-sizing: initial;
    border-left: 10px solid #00cba9;
    background: #00cba9;
    transition: 0.5s;
    overflow-x: hidden;
}

.navigation.active {
    width: 250px;
    overflow-x: visible;
}

.navigation ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 5px;
    padding-top: 40px;
}

.navigation ul li {
    position: relative;
    list-style: none;
    width: 100%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.navigation ul li a {
    position: relative;
    display: block;
    width: 100%;
    display: flex;
    text-decoration: none;
    color: #fff;
}

.navigation ul li a .icon {
    position: relative;
    display: block;
    min-width: 60px;
    height: 60px;
    line-height: 70px;
    text-align: center;
}

.navigation ul li a .icon ion-icon {
    font-size: 1.5em;
}

.navigation ul li a .title {
    position: relative;
    display: block;
    padding-left: 10px;
    height: 60px;
    line-height: 60px;
    white-space: normal;
}

.navigation ul li.active {
    background: #fff;
}

.navigation ul li.active a {
    color: #00cba9;
}

.toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #00cba9;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}


.toggle ion-icon {
    position: absolute;
    color: #fff;
    font-size: 34px;
    display: none;
}

.toggle ion-icon.open {
    display: block;
}

.toggle.active ion-icon.open {
    display: none;
}

.toggle ion-icon.close {
    display: none;
}

.toggle.active ion-icon.close {
    display: block;
}



.main-text {
    text-align: center;
}

.main-title h1 {
    padding-top: 15px;
    padding-bottom: 35px;
    text-align: center;
    font-family: "Indie Flower", sans-serif;
}

.main-text p {
    text-align: center;
}

.main-text img {
    align-content: center;
    display: flex;
    flex-direction: column;
    width: 300px;
    border-style: groove;
    border-width: 2px;
    border-radius: 7px;
    box-sizing: border-box;
    border-color: #00cba9;
    margin-bottom: 30px;
    margin-left: 42%;
}

#page-container {
    position: relative;
    min-height: 100vh;
}

#content-wrap {
    padding-bottom: 150px;
    /* Footer height */
}

#footer {
    position: absolute;
    display: flex;
    flex-direction: row;
    bottom: 0;
    width: 98%;
    height: 150px;
    background-color: #00cba9;
    margin-left: 1%;
    margin-right: 1%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    /* Footer height */
}

#footer p {
    margin-left: 20px;
    text-decoration: none;
}

#footer #title {
    margin-top: 10px;
}

#footer #title.name {
    margin-bottom: 10px;
    margin-left: 20px;
}

#footer .socials {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

#footer .socials p:hover {
    text-decoration: underline;
    cursor: pointer;
}

#footer .info {
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

#footer .basic-info {
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
    margin-top: 20px;
}
