body{
    background-color:rgb(13, 9, 63);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif,'Urbanist', sans-serif;
}
.heading{
padding: 30px 30px;
font-size: 40px;
color:#fff;
}
.border{
    width:370px;
    margin-top: 5px;
    height: 3px;
    background-color: #fff;
}
.container{
    height: 80vh;
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.in-container{
    background-color:rgb(229, 233, 231);
    width:450px;
    height: 400px;
    position: relative;
    border-radius: 10px;
    padding: 20px;
    -webkit-box-shadow: -1px 5px 79px 19px rgb(169, 169, 169);
-moz-box-shadow: -1px 5px 79px 19px rgb(154, 154, 154);
box-shadow: -1px 3px 5px 1px rgb(111, 109, 111);
}
.in-container .comma{
    font-size: 50px;
    color:rgb(17, 12, 88);
}
.content{
    /* background-color: blueviolet; */
    height: 70%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: space-between;
}
.text{
    flex:3;
    padding-top: 40px;
    /* background-color: black; */
}
#qutoes{
    font-size: 30px;
    /* line-height: 30px; */
    letter-spacing: 1px;
}
#author{
    flex:1;
    /* background-color: brown; */
    display: flex;
    align-items: center;
    justify-content: end;
    font-size: 22px;
    letter-spacing: 2px;
    /* font-style: italic; */
    color:rgb(4, 118, 179);
    font-weight: 600;
}
.btn{
   display: flex; 
   margin-top: 30px;
   height: 45px;
   justify-content: center;
   align-items: center;
}
.btn button{
    background-color: rgb(17, 12, 88);
    padding: 0px 30px;
    color:#fff;
    cursor: pointer;
    font-weight: 600;
    border-radius: 30px;
    height: 100%;
    border: none;
    outline: none;
}
.icon{
    /* position: absolute; */
    /* top:20px; */
    right:20px;
    display: flex;
    align-items: center;
    justify-content: end;
}
.icons{
    width:50px;
    height: 50px;
    color:#fff;
    border-radius: 50%;
    cursor: pointer;
    margin:0px 6px;
    background-color: rgb(17, 12, 88);
    justify-content: center;
    display: flex;
    align-items: center;
}
.icons:hover{
    background-color: orange;
    color:black
}
@media(max-width:600px){
    .container{
        padding: 0px 10px;
    }
    .heading{
        font-size: 30px;
    }

}
@media(max-width:430px){
    .border{
        width:220px
    }
}
