﻿/******************************
    StoreCheckout Stylesheet
 ******************************/

.Landing-Page {
    display: flex;
    flex-direction: column;
}

.Landing-Page-Header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3vh;
    margin-bottom: 2vh;
    color: #00529b;
}

.Landing-Page-Header h3 {
    font-weight: bold;
    font-size: 32px;
}

.Landing-Page-Options {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.Landing-Page-Option {
    display: flex;
    flex-direction: column;
    width: 30%;
    height: auto;
    cursor: pointer;
    margin: 6vh;
    padding: 4vh;
    justify-content: center;
    align-items: center;
    background-color: rgba(201, 169, 166,0.2);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.5);
    box-shadow: 0 0 4px rgba(0,0,0,0.5);
}

.Landing-Page-Option img {
    height: 90%;
    max-width: 10vw;
    max-height: 15vh;
    border: 1px solid black;
    margin-bottom: 2vh;
}

.Landing-Page-Option h4 {
    color: #00529b;
    font-size: 20px;
}

.Landing-Page-Info {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: 2rem 0rem 2rem 0rem;
    text-align: center;
    
}

.Landing-Page-Info h4 {
    font-size: 16px;
    color: #00529b;
    padding-bottom: 1rem;
}