body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    overflow: hidden;
}

h1, h2 {
    font-family: 'Berkshire Swash', cursive;
    font-size: 2rem;
    margin-bottom: 0rem;
}

h2 {
    font-size: 1.4rem;
}

#background-video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

.content {
    /*padding: 30px;
   font-size: 20px;
   position: fixed;
   right: 0;
   top: 0;
   background: rgba(0, 0, 0, 0.5);
   color: #f6f6f6;
   width: 100%;*/
    position: relative;
    height: 98vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: #f6f6f6;
    flex-direction: column;
}

input[type=submit] {
    transition-duration: 0.4s;
    background-color: lightgreen;
    border-style: solid;
    border-width: 2px;
    border-color: darkgreen;
    border-radius: 6px;
    padding: 6px 15px;
}

    input[type=submit]:hover {
        background-color: darkgreen;
        color: white;
        box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    }

#EmailDiv {
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    #EmailDiv label {
        margin: .35rem;
    }

    #EmailDiv input[type=submit] {
        width: 10rem;
    }

    #EmailDiv input[type=text] {
        height: 1.5rem;
        width: 15rem;
        border-style: solid;
        border-width: 2px;
        border-color: darkgreen;
        border-radius: 6px;
    }

.from-logo {
    margin-top: .5rem;
    margin-bottom: 3rem;
}

.gift-cards {
    overflow-y: auto;
    height: 80vh;
}

    .gift-cards::-webkit-scrollbar {
        width: 10px;
    }

    .gift-cards::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.5);
    }

    .gift-cards::-webkit-scrollbar-thumb {
        background-color: rgba(255, 255, 255, 0.5);
    }

.gift-card {
    display: inline-block;
    width: 200px;
    padding: 10px;
    border-style: solid;
    border-width: 2px;
    border-color: transparent;
    border-radius: 6px;
}

    .gift-card img {
        width: 200px;
        height: 200px;
    }

    .gift-card p {
        text-align: center;
    }

.gift-card-selected {
    background-color: rgba(128, 255, 128, 0.5);
    border-color: darkgreen;
}

.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.clearfix {
    overflow: auto;
}

.confirm-card {
    background: rgba(0, 0, 0, 0.5);
    min-height: 20vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95vw;
    margin: 1rem 1rem 10vh 1rem;
}

    .confirm-card p {
        margin: 1rem 0 0 0;
    }

    .confirm-card input[type=submit] {
        width: 100px;
    }

.get-card {
    min-height: 60vh;
}

    .get-card h2 {
        margin-bottom: 4rem;
    }

    .get-card a {
        color: lightblue;
        border-style: solid;
        border-width: 2px;
        border-radius: 6px;
        padding: 6px;
        text-decoration: none;
    }

        .get-card a:hover {
            color: lightcyan;
        }
