* {
    margin: 0;
    padding: 0;
}

body {
    background-image: url(../image/rainydays.gif);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

#outer {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(180px);
    text-align: center;
}

#inner {
    max-width: 700px;
    max-height: 700px;
    border: solid;
    border-color: #B0C4DE;
    background-color: black;
    padding: 20px 20px 20px 20px;
    background: rgba(0, 0, 0, 0.5);
    text-shadow: 4px 4px 6px black;
}

#title {
    font-family:'chiller', sans-serif;
    font-size: 60px;
    font-weight: 500;
    color: #8290AC;
    text-shadow: 4px 4px 6px black;
}

#text {
    color: #BCC7CC;
    padding-top: 20px;
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 20px;
    text-shadow: 4px 4px 6px black;
    opacity: 1;
    transition: opacity 0.5s ease;
}

button {
    width: 150px;
    height: 50px;
    background-color: black;
    color: #fff;
    transition: 0.5s;
    cursor: pointer;
}

button:hover {
    background: #515F7A;
    transition: 0.5s;
}


#prev, #next {
    margin: 10px 15px;
  }


  
#text .fade-out {
    opacity: 0;
  }