
body {
    background: url("/img/flowers.jpg") no-repeat;
    background-position: 70%;
    background-size: cover;
    font-family: 'Playfair';
    box-sizing: border-box;
}

.playfair {
    font-family: 'Playfair';
}

.wrapper {
    height: 100vh;
}

.intro {
    height: 70px;
    padding: 50px 30px;
    box-shadow: 0 20px 25px rgba(0,0,0,0.2);
    font-size: 45px;
}

.words{
    overflow: hidden;
}

.adjective{
    display: block;
    height: 100%;
    padding-left: 10px;
    color: #CFA30E;
    animation: spin_words 6s infinite;
}

@keyframes spin_words{

    10%{
        transform: translateY(-112%);
    }
    25%{
        transform: translateY(-100%);
    }
    35%{
        transform: translateY(-212%);
    }
    50%{
        transform: translateY(-200%);
    }
    60%{
        transform: translateY(-312%);
    }
    75%{
        transform: translateY(-300%);
    }
    85%{
        transform: translateY(-412%);
    }
    100%{
        transform: translateY(-400%);
    }
}

.hide {
    visibility: hidden;
}

img {
    max-height: 200px;
}

/* Footer Styling */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: fit-content;
    align-items: center;
    text-align: center;
    font-family: 'Playfair Display';
    letter-spacing: 1px;
    font-weight: 400;
    padding: 10px;
    box-shadow: 1px 1px 1px 1px gray;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: #E9DABD;
}

footer p {
    font-size: x-small;
}

footer a {
    color: black;
    text-decoration: none;
}

.footer-text {
    margin: 0;
}

.copy {
    font-family: 'Roboto';
    font-size: 100%;
}