@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

@keyframes typing {

    0%,
    100% {
        width: 0;
    }

    20%,
    60% {
        width: 100%;
    }

    40% {
        width: 100%;
    }

    80% {
        width: 0;
    }
}

body {
    background: #00140E;
    background-size: 800% 800%;
    animation: gradient 60s ease infinite;
    min-height: 100vh;
    margin: 0;
    font-family: 'Inter', sans-serif;
    padding: 0px;
    display: flex;
    flex-direction: column;
    background-image: url('/images/hadith_of_the_day.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain
}

html {
    margin: 0;
    padding: 0;
}

#container {
    text-align: left;
    max-width: 40em;
    margin: auto;
    padding: 3em;
}

#hadith {
    margin-bottom: 20px;
    font-size: 25px;
    color: #73E7C4;
    line-height: 150%;
    text-align: left;
}

#reference {
    margin-top: 60px;
    font-size: 20px;
    color: white;
    text-align: left;
    text-transform: uppercase;
}

#next-hadith {
    margin-top: 40px;
    padding: 20px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    color: #00140E;
    padding-left: 30px;
    transition: background-color 2s;
    border-radius: 10px;
    background-color: #73E7C4;
    background-image: url('/icons/next_icon.svg');
    background-position: 17px center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
}

#copy {
    background-color: #f1f8ff;
    color: #222831;
    background-image: url('/icons/copy_icon.svg');
    background-position: 17px center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-left: 10px;
    margin-top: 40px;
    padding: 20px 5px;
    padding-left: 45px;
    border-radius: 10px;
}

#footer {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: transparent;
    flex-shrink: 0;
}

.toggle-container {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    z-index: 10;
}

#copyright {
    font-size: 15px;
    color: gray;
    white-space: pre-line;
    text-align: center;
    flex: 1;
    margin-bottom: 1em;
}

#next-hadith.clicked {
    transform: scale(0.9);
    background-color: #74b9ff;
}