* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #19172e;
    font-family: "Garamond", serif;
    transition-timing-function: ease-in;
    transition: 0.7s;
}

#quote {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

#author {
    margin: 10px;
    text-align: right;
    font-size: 25px;
    font-style: italic;
    font-family: "Garamond", serif;
    color: #19172e;
}

#source {
    margin: 10px;
    text-align: right;
    font-size: 25px;
    font-weight: 700;
    font-family: "Garamond", serif;
    color: #19172e
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    width: 600px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 10px;
}


.buttons {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 9px;
    justify-content: center;
}

#tweet {
    border: solid rgb(102, 179, 255);
    border-radius: 4px;
    background-color: rgb(102, 179, 255);
    color: white;
    text-align: center;
    font-size: 1.8em;
    width: 60px;
    height: 35px;
    line-height: 40px;

}

#whatsapp {
    border: solid #25D366;
    border-radius: 4px;
    background-color: #25D366;
    color: white;
    text-align: center;
    font-size: 1.8em;
    width: 60px;
    height: 35px;
    line-height: 40px;

}

footer {

    text-align: center;
    color: white;
    font-size: 1rem;
    position: absolute;
    bottom: 0px;
    padding: 5px;
    line-height: 3vh;
    font-family: "Roboto", sans-serif;
}

.heading {
    font-family: "Roboto", sans-serif;
    color: white;
    font-size: 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 100px;
}


.next {
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px;
    margin-top: 5px;
    font-weight: bold;
    color: white;
    background-image: linear-gradient(to right bottom, rgb(230, 100, 0), #574c2ba8);
}