/* CSS RESET - */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

html,
body {
    height: 100%;
}

button {
    font: inherit;
}

/* Dark Mode */
body {
    width: 100%;
    height: 100%;
    line-height: 1.5;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    background-color: #000000;
    color: white;
    overflow: hidden;
}

.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.toggleBtn {
    position: absolute;
    top: 3em;
    right: 3em;
    cursor: pointer;
    background-color: transparent;
    border: none;
}

h1 {
    background-image: -webkit-linear-gradient(92deg, #f35626, #feab3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: hue 10s infinite linear;

    @-webkit-keyframes hue {
        from {
            -webkit-filter: hue-rotate(0deg);
        }

        to {
            -webkit-filter: hue-rotate(-360deg);
        }
    }
}

.quote-container {
    width: 400px;
    display: flex;
    flex-direction: column;
    margin: 20px;
}

.quote-box {
    border: 5px solid;
    border-image: linear-gradient(45deg, purple, orange) 1;
    padding: 50px 20px;
    margin-bottom: 20px;
    width: 600px;
    position: relative;
}

#quote {
    color: whitesmoke;
    text-align: center;
}

#author {
    float: right;
    color: gray;
    font-weight: bold;
    font-style: italic;
    margin-top: 10px;
}


.btn-mid {
    text-decoration: none;
    padding: 5px;
    cursor: pointer;
    font-size: 16px;
    line-height: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    margin: 20px;
    border-radius: 3px;

}

.btn-white {
    border: solid 1.5px #fff;
    background: transparent;
    color: #fff;
}

.btn-white:hover {
    border: solid 1.75px #fff;
    background: #fff;
    color: #1f1f1f;
}

#btn {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

#copyBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}