@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
    }
:root{
    --fundo: #20293A;
    --container-fundo: #2d323a;
    --btn-active: #2a313a;
    --letra: #E3E8EF;
    --tags: #AEB0FF;
}
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--fundo);
    color: var(--letra);
    margin: 0px 20px;
    }
#container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    width: min(100%, 600px);
    background-color: var(--container-fundo);
    padding: 35px;
    background-image: url(resources/bg-image-random-quote.svg);
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 447px 304px 151px 0px rgba(0, 0, 0, 0), 286px 195px 138px 0px rgba(0, 0, 0, 0.01),
  161px 110px 117px 0px rgba(0, 0, 0, 0.05), 72px 49px 87px 0px rgba(0, 0, 0, 0.09),
  18px 12px 48px 0px rgba(0, 0, 0, 0.1);
    
}

#author{
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 700;
}
#tags{
    display: flex;
    gap: 10px;
}
.tags{
    border: 2px solid var(--tags);
    border-radius: 10px;
    padding: 1px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size:  0.9rem;
}
#quote{
    text-align: center;
    font-size: 1.3rem;
    margin-top: 20px;
}
#buttons{
    margin-top: 20px;
    display: flex;
    gap: 10px;
}
.btn{
    background-color: var(--container-fundo);
    padding: 5px 15px;
    font-weight: 600;
    color: var(--letra);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    gap: 10px;
}
.btn:active{
    background-color: var(--btn-active);
    transform: scale(0.9);
}
.author-info {
    font-size: 14px;
    text-align: center;
    margin-top: 16px;
}

.author-info a {
    text-decoration: none;
    color: var(--letra);
    font-weight: 700;
}

@media screen and (min-width:1024px) {
    #author{
        font-size: 1.3rem;
    }
    .tags{
        font-size:  1rem;
    }
    #quote{
        text-align: center;
        font-size: 1.6rem;
        margin-top: 20px;
    }
    .btn{
        font-size: 1rem;
    }
}