body {
    background-color: #493545;
    overflow: hidden;
    text-align: center;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white;
    /* font-size: 1vw; */
}

#splash {
    margin: 0;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    transition: opacity 1s forwards;
}

#searchbar {
    white-space: nowrap;
    outline:none;
    
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

    border-style: solid;
    border-color: #333;
    border-width: 0.5vw;

    width: 60%;
    padding: 1vw;
    border-radius: 1vw;

    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    animation-name: searchexpand;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

#qLinkContainer {
    z-index: -1;
    margin: 0;
    position: absolute;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#qLink {
    font-size: 1vw;
    border-radius: 15px;
    /* margin-left: 0.1vw;
    margin-right: 0.1vw; */
    display: inline-block;
    overflow: hidden;
    font-size: 14px;
  }

  #qLink img {
    border-radius: 20px;
    display: block;
    object-fit: contain;
    width: 50px;
    height: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    background-color: #333;
    padding:8px;
  }

#quote {
    opacity: 0%;
    font-family: 'Times New Roman', Times, serif;
    font-size: 150%;
    /* white-space: nowrap; */
    font-style: italic;
    font-weight: bolder;
}
    .quoteflyin {
        animation: quoteflyin 2s forwards;
    }

    #quotecomment {
        opacity: 0;
        transition: opacity 1s;
    }
    
        #quotecomment:hover {
            opacity: 1;
        }

@keyframes quoteflyin {
    from {opacity: 0%; transform: translateY(-1000%);}
    to {opacity: 100%; transform: translateY(0%);}
}

@keyframes fadein {
    from {opacity:0%;}
    to {opacity: 100%;}
}

@keyframes searchexpand {
    from {width: 20%; transform: translate(-50%,1000%);}
    to {width:60%; transform: translate(-50%,-50%);}
}
