﻿#logo {
    width: 180px;
    margin: 1rem 0;
}

.btn-default {
    border: 2px solid #9D2449;
    color: #891F3E;
}

.btn-default:hover {
        border: 2px solid #891F3E;
        background-color: #891F3E !important;
        color: white;
}

i {    
    cursor: pointer;
}

.splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #FAFAFA;
    z-index: 200;
    color: #DAC780;
    text-align: center;
    line-height: 90vh;
}

    .splash.display-none {
        position: fixed;
        opacity: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #FAFAFA;
        z-index: -10;
        color: #DAC780;
        text-align: center;
        line-height: 90vh;
        transition: all 0.5s;
    }

@keyframes fadeIn{
    to
    {
        opacity: 1;
    }
}

.fade-in{
    font-size:25px;    
    opacity:0;
    animation:fadeIn 1s ease-in forwards;
}
