@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Satisfy&display=swap');

body {
    background-color: rgb(37, 37, 37);
    overflow: hidden;
}

.container {
    width: 100%;
    height: 91vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(37, 37, 37);
    /* position: fixed; */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.inner {
    height: 80vh;
    width: 60vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #4cb9ede1;
}

.box {
    width: 70%;
    height: 70%;
    background-color: #fff;
    box-shadow: 2px 2px 10px 5px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.number {
    height: 60px;
    width: 150px;
    position: absolute;
    top: -30px;
    right: -60px;
    background-color: rgba(0, 0, 0, 0.158);
    transform: rotate(45deg);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.232);
}


#tweet {
    height: 30px;
    width: 30px;
    padding: 5px;
    cursor: pointer;
    transform: rotate(-45deg);
    animation: rotweet 1s linear;
}

@keyframes rotweet {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.text {
    padding: 10%;
    padding-top: 35px;
    padding-bottom: 0%;
}

.fa-solid {
    opacity: 0.2;
    font-size: 50px;
}

#quotes {
    font-family: 'Satisfy', cursive;
    font-size: 28px;
    opacity: 0.7;
}

#author {
    text-align: right;
    font-size: 20px;
    opacity: 0.8;
    font-family: 'Merriweather', serif;
}

.button {
    width: 100%;
    height: 10%;
    background-color: #0085ffcf;
    text-align: center;
    position: absolute;
    bottom: 0px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 1px;
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.button:hover {
    opacity: 0.9;
    font-size: 28px;
    font-weight: 700;
}

.footer {
    width: 100%;
    text-align: center;
    position: sticky;
    margin: 20px 0 10px 0;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer p {
    color: white;
}

.fa-heart {
    color: #0085ffcf;
}