*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000000;
    /* background-color: #ffffff; */
}

.heading{
    text-align: center;
    margin: 70px 0px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.title{
    color: #f4620d;
    font-size: 40px;
}

.add-btn{
    padding: 10px 20px;
    margin: 20px;
    font-size: 20px;
    border-radius: 10px;
    border: none;
    background-color: #f4620d;
}

.add-btn:hover{
    scale: 1.03;
}

.quote-body{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.quote{
    color: white;
    width: 60%;
    height: auto;
    min-width: 300px;
    max-width: 700px;
    border: 2px solid #f4620d;
    padding: 20px 25px;
    border-radius: 15px;
    font-size: 20px;
    font-family: 'Lucida Sans', sans-serif;
}

.quote-content{
    padding-bottom: 20px;
    font-size: 22px;
    font-weight: 200;
    font-style: italic;
    line-height: 1.6;
}

.quote-author{
    text-align: right;
    font-weight: 500;

    @media (max-width: 600px) {
        font-size: 18px;
        font-weight: 600;
    }
}

.quote-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-footer{
    display: flex;
}

.quate-tags{
    display: flex;
    align-items: center;
    max-height: 35px;
    padding: 5px 10px;
    margin-top: 2px;
    border-radius: 5px;
    background-color: #f4620d;
    color: #000000;
    font-size: 14px;
    margin-left: 10px;
}

.quate-copy{
    display: flex;
    align-items: center;
    max-height: 35px;
    padding: 5px 10px;
    margin-top: 2px;
    border-radius: 5px;
    background-color: #f4620d;
    color: #000000;
    font-size: 14px;
    margin-left: 10px;
}