body {
    background:
    linear-gradient(
      rgba(0, 0, 0, 0.45), 
      rgba(0, 0, 0, 0.45)
    ),
    url("images/background.jpg");
}

div {
    margin: 0 auto;
    text-align: center;
}

.quote-container {
    height: 500px;
}

.quote-background {
    font-family: 'Ranga', cursive, sans-serif;
    color: white;
    text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue;
    padding: 20px;
    border-radius: 20px;
    position: relative; 
    top: 50%; 
    transform: translateY(-50%);
    width: 60%;
    background: rgba(0, 0, 0, 0.6);
}

.quote-text {
    font-size: 2.5em;
    opacity: 1;
    animation: fade 2s linear;
}

.styled-btn {
    background-color: #708090;
    color: #fff;
    padding: 10px;
    margin: 10px;
    border-color: #708090;
    border-radius: 5px;
}

.styled-btn:hover {
    box-shadow: 20px, 20px, 10px, #fff;
}
