/* Global */
* {
    max-width: 100%;
    margin: 0%;
    padding: 0%;
    font-family: 'Poppins', sans-serif;
    color: #FBFBFB;
}

#background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    opacity: 20%;
}

body {
    background-color: #232429;
}

nav {
    margin: 10px;
    padding: 16px 32px;
}

a {
    cursor: pointer;
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    font-size: 20px;
}

h1, p {
    color: #FBFBFB;
    margin: 0;
}

section {
    margin: 5%;
}

embed {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background-color: #121212;
    overflow-y: hidden
}

button {
    background-color: #576EE0; 
    border: none;
    border-radius: 5px;
    padding: 16px 32px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #4f64cf; 
}

/* Navbar */
.navbar-logo {
    color: white;
    text-decoration: none;
    display: block;
    text-align: center;
}

.navbar-logo:hover {
    color: #4f64cf;
}

.navbar-left {
    float: left;
}

.navbar-right {
    float: right;
}

.mobile-logo {
    display: none;
}

/* About */
.about {
    display: block;
    text-align: center;
}

.information {
    margin: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slogan {
    color: #6A6D7C;
}

section .introduction p {
    color: #6A6D7C;
}

.download {
    margin: 10px;
    display: flex;  
    justify-content: center;  
    align-items: center;  
}

/* Footer */
footer { 
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #576EE0;
    position: fixed;
    bottom: 0%; 
    left: 0; 
    width: 100%;
    height: 4rem;
    z-index: 2;
}

.footer__link {
    text-decoration: underline;
}

/* Screen sizes */
@media (max-width: 767px) {
    /* Logo centered */
    ul {
        justify-content: center;
    }

    /* Download button hidden */
    .navbar-right,
    .navbar-logo {
        display:none;
    }

    .mobile-logo {
        span.icon {display:inline-block}
    }
}
