@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700&display=swap');
@import "reset.css";

:root {
    /* HERE YOU CAN CHANGE THE BACKGROUND COLOR OF THE SITE */
    --background-color: #0F0F19;
    /* AND THIS ONE CHANGES THE NAVIGATION BACKGROUND COLOR */
    --nav-background-color: #0F0E2A;
  }

body {
    box-sizing: border-box;
    background-color: var(--background-color);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

nav {
    background-color: var(--nav-background-color);
    padding: 10px;
    height: 40px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 9999;
}

hr {
    border: none;
    border: .5px solid grey;
    border-radius: 100px;
    width: 85%;
}

.wallpaper {
    width: 100%;
    height: auto;

}    

.navigation-wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.navigation-logo {
    width: 130px;
}

.navigation-logo2 {
    width: 90px;
    height: auto;
}

.navigation-premium-btn {
    text-decoration: none;
    color: white;
    font-size: 18px;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 8px;
    border-radius: 30px;
}

.apps-wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 25px;
}

.apps-app-icon {
    flex: 1 0 calc(33.33%);
}

.apps-app-icon img {
    width: 70px;
    border-radius: 15px;
    margin: auto;
    display: block;
    margin-bottom: 10px;
}

.apps-app-icon-name {
    text-align: center;
    color: white;
    font-size: 1rem;
    margin-bottom: 45px;
}

/* If you click on an app, then you get all these styles for app pages */
/* Start */

.app-banner img {
    width: 100%;
    /* max-height: 100px;  MISSCHIEN VOOR LATER IDK */
}

.app-page-wrapper {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.app-page-name-tag {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.app-page-creator-tag {
    color: white;
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 28px;
}

/* UNDER HERE. THE WIDTH: 84px; makes the icon change from size, how higher, how bigger */
.app-page-icon img {
    width: 110px;
    border-radius: 15px;
}

.app-page-icon {
    padding: 20px;
}

.app-page-get-app-btn {
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: #007AFF;
    padding: 3px 18px 5px 18px;
    border-radius: 50px;
}

.app-page-description-of-app {
    padding: 20px;
}

.app-page-description-of-app h1 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.app-page-description-of-app p {
    color: #fff;
    font-size: 1.0rem;
    font-weight: 300;
    line-height: 23px;
    margin-top: 5px;
    margin-bottom: 20px;
}

.types-of-app-wrapper {
    display: flex;
    padding: 0px 20px 0px 9px;
}

.types-of-app-container img {
    width: 60px;
    border-radius: 15px;
    padding: 1px;
}

.app-page-information-app-store {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 10px 20px;
}

.app-page-information-bottom-container h1 {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.5;
    padding: 0px 10px;
}

.app-page-information-bottom-container p {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
}

.app-information-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.app-page-information-bottom-container {
    padding: 10px;
}

.app-page-information-bottom-container a {
    text-decoration: none;
    color: #6481D0;
    outline: none;
}

.app-page-how-to-use-vid {
    padding: 0px 20px;
}

.app-page-how-to-use-vid h1 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}