﻿body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    display: block;
    width: 100%;
}

main {
    flex: 1;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}

footer {
    display: block;
    width: 100%;
}

.auth-footer {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.burnt-orange {
  color: var(--burntorange)
}

.full-display {
    display: flex;
}
.mobile-display {
    display: none;
}





/*
Menu
*/
.menu-container {
    display: flex;
    width: 100%;
    justify-content: center;
    background-color: var(--burntorange);
    border-bottom: solid 1px darken(var(--burntorange, 2%));
    padding: 10px 0 10px 0;
}

.menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 50%;
}

.menu-item {
    /*border: solid 1px gray;*/
    color: white;
    cursor: pointer;
    text-decoration: none;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}



/*
Index
*/
.index-container-bordered {
    background-color: var(--burntorange-light);
    border: solid 1px var(--burntorange-medium);
    border-radius: 1.2rem;
    color: var(--burntorange);
    padding: 1rem;
    /* font-size: 0.9rem; */
    font-weight: normal;
}

.index-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}



/*
Index - Logo/Intro
*/
.index-intro-container {
    padding: 2rem;
}

.index-intro {
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}

.index-intro-screenshot {
    width: 320px;
    height: auto;
}

.index-logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.index-logo {
    display: flex;
    flex-direction: row;
    align-items: baseline;
}

.index-logo-title {
    font-size: 120px;
    font-weight: bold;
    line-height: 1;
    color: var(--burntorange);
}

.index-logo-subtitle {
    font-size: 40px;
    font-weight: normal;
    color: var(--burntorange);
}

.index-logo-text {
    font-size: 1.7rem;
    color: var(--burntorange);
}

.index-logo-app-icon {
    width:150px;
    padding-left: 2rem;
}




/*
Index - Security
*/
.index-security {
    width: 60%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}

.index-security-container {
    padding: 4rem 2rem;
}

.index-security-screenshot {
    width:320px;
}

.index-security-ul {
    list-style: disc;
}

.index-security-ul > li {
    padding: 0.2rem;
}


/*
Index - Features/Screenshots
*/

.index-features {
    width: 60%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}

.index-image-lock {
    width: 280px;
}

.index-image-scan {
    width: 280px;
}

.index-image-qrcode {
    width: 280px;
}

