body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    font-family: "Outfit", sans-serif;
    background-color: #111729;
    color: #ffffff;
}
main {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.card {
    background-color: #20293A;
    background-image: url("bg-image-random-quote.svg");
    background-repeat: no-repeat;
    background-position:center right;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
    padding-bottom: 40px;
    border-radius: 20px;
    margin-left: 50px;
    margin-right: 50px;
}
.author {
    font-size: 16px;
    text-align: center;
}
.tags {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.tag-el {
    padding-top: 12px;
    padding-bottom: 12px;
    border: 1px solid #6466E9;
    border-radius: 15px;
    color: #6466E9;
    font-size: 10px;
    padding: 4px;
    padding-left: 12px;
    padding-right: 12px;
}
.quote {
    color: #97A3B6;
    font-size: 24px;
    padding-top: 12px;
    text-align: center;
    max-width: 480px;
}
.buttons {
    display: flex;
    gap: 0;
}
.btn-style {
    background-color: #111729;
    padding: 8px;
    padding-left: 12px;
    padding-right: 12px;
    border: 1px solid  #20293A;
}
#btn-random {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;

}
#btn-copy-clipboard {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
