
@import url('https://fonts.googleapis.com/css2?family=Encode+Sans+SC:wght@300;400;500&family=Otomanopee+One&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    margin-top: 20px;
    background: rgb(2,0,36);
    background: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(0,0,0,1) 0%, rgba(11,11,11,1) 46%, rgba(52,162,29,0.8099614845938375) 100%);
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    font-family: 'Encode Sans SC', sans-serif;
    overflow: hidden;
}

h1{
    font-family: 'Otomanopee One', sans-serif;
    font-size: 23px;
    color: #fff;
}

.container{
    display: flex;
    flex-direction: column;
    text-align: center;
    position: absolute;
    top: 250px;
    justify-content: center;
}

.btn{
    font-family: 'Otomanopee One', sans-serif;
    margin-top: 20px;
    font-size: 22px;
    padding: 5px;
    background-color: rgb(17, 16, 16);
    color: #fff;
    width: 200px;
    text-align: center;
    outline: none;
    transition: ease-in-out 1s;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.btn:hover{
    box-shadow: inset 300px 0 0 0 rgb(3, 68, 3);
}

.btn:active{
    transform: scale(4);;
}

.quote-container{
    height: auto;
    width: auto;
}

.frase{
    font-size: 25px;
    position: relative;
    top: 15px;
    width: auto;
    color: #fff;
}

.autor{
    font-weight: bold;
    position: relative;
    top: 20px;
    font-size: 38px;
}

.autor-img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: relative;
    left: 250px;
    bottom: 0px;
}

footer{
    margin-bottom: 10px;
    position: absolute;
    color: white;
    bottom: 0;
    left: 10;
    font-size: 14px;
}

@media screen and (max-width: 468px){
    body{
        background: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(0,0,0,1) 0%, rgba(11,11,11,1) 38%, rgba(52,162,29,0.8099614845938375) 100%);
        height: 790px;
    }

    .container{
        display: flex;
        justify-content: center;
        align-content: center;
        flex-direction: column;
        text-align: center;
    }

    .frase{
        font-size: 19px;
        width: 390px;
        margin-left: 14px;
        margin-top: 10px;
    }

    .autor{
        font-weight: bold;
        font-size: 33px;
        color: rgb(0, 0, 0);
        letter-spacing: 1px;
    }

    .btn{
        margin-top: -10px;
        font-size: 22px;
        padding: 5px;
        width: 200px;
    }

    .quote-container{
        display: flex;
        flex-direction: column;
    }

    .autor-img{
       position: relative;
       left: 150px;
       margin-top: 30px;
       width: 130px;
       height: 130px;
    }
    
    footer{
        position: relative;
        top: 480px;
        right: 110px;
        font-size: 13px;
    }
}