

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Open+Sans:wght@400;600&display=swap');
html{
    box-sizing: border-box;
}

body{
    margin: 0;
    min-height: 100vh;
   /*background-color: rgba(5, 13, 37, 0.9);;*/
    background-image: url('');
    color: #000;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container{
    display: flex;
    flex-direction: row;
    background-color: gainsboro;
}
.header-content{
    float: left;
    padding-left: 5%;
    margin-top: 2%;
    width: 100%;
    position: relative;
}
header{
    padding: 2% 2% 2% 10%;
    font-size: 20px;
}
.main-sect{
    margin-top: 4%;
}
.quote-span{
    display: flex;
    flex-direction: column;
    font-size: 20px;
    margin-left: 2%;
    font-style: italic;
    font-weight: bold;
}
#quote-list li{
    list-style-type: none;
}
.quote-container{
    width: auto;
    max-width: 900px;
    border-radius: 10px;
    padding: 20px 30px;
    background-color: rgba(238, 67, 124, 0.9);
    box-shadow: 0 10px 10px rgba(0,0,0,0.9);
    margin-top: 10%;
    margin-right: 25%;
    margin-bottom: 5%;
}
.quote-text{
    font-size: 2.75rem;
}
.long-quote{
    font-size: 2rem;
}
.fa-quote-left{
    font-size: 4rem;
}
.quote-author{
    margin-top: 15px;
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
}
.button-container{
    margin-top: 15px;
    font-size: 2rem;
    font-weight: 600;
    font-style: italic;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}
button{
    cursor: pointer;
    font-size: 1.2rem;
    height: 2.5rem;
    border: none;
    border-radius: 10px;
    color: #fff;
    background-color: #333;
    outline: none;
    padding: 0.5rem 1.8rem;
    box-shadow: 0 0.3rem rgba(121,121,121,0.65);
}
    /*button:hover{
    filter: brightness(1%);}*/
    
    button:active{
        transform: translate(0, 0.3rem);
        box-sizing: 0 0.1rem rgba(255, 255, 255, 0.65);
    }

    .twitter-buton:hover{
        color: #38a1f3;
    }
    .fa-twitter {
        font-size: 1.3rem;
    }
    #quote-form{
        background-color: white;
        font-size: 600;
        border-radius: 5%;
        width: auto;
        padding: 2%;
    }

    #delete-form{
        background-color: white;
        font-size: 600;
        border-radius: 5%;
    }
    input{
        width: 75%;
        margin: 2%;
        padding: 2%;
    }
    #delete-quote{
        width: 10%;
        height:5%;
        border-radius: 10%;
        margin-left: 50%;
    }
    #btn-submit{
        width: 10%;
        height:5%;
        border-radius: 10%;
        margin-left: 50%;
    }

    @media screen and (max-width: 1000px) {
        .quote-container {
            margin: auto 10px;
        }
        .quote-text {
            font-size: 2.5rem;
        }
    }