@import url("https://fonts.googleapis.com/css2?family=Fascinate+Inline&family=Lobster&family=Ubuntu&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Ubuntu", "Lobster", "sans-serif";
}

body {
    background-color: greenyellow;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.container {
    height: 50%;
    width: 60%;
    margin-top: 10%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid black;
}

.quote-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
    border-left: 10px solid greenyellow;
}
.quote-box .quotemarks {
    margin-left: -95%;
    margin-top: -8%;
}

.quote {
    margin-top: 10px;
    margin-left: 30px;
    font-size: 1.75rem;
    font-weight: 400;
}

.author {
    margin-top: 7px;
    margin-right: -50%;
    font-size: 1.125rem;
    font-weight: 200;
}

.next-quote-btn {
    background-color: greenyellow;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.125rem;
    padding: 10px;
    border-radius: 5px;
    margin-left: 10px;
    color: white;
}

.next-quote-btn:focus {
    border: 2px solid black;
}

.twitter-btn {
    cursor: pointer;
    background-color: greenyellow;
    color: white;
    border: none;
    font-size: 1.125rem;
    padding: 10px;
    border-radius: 5px;
    margin-left: -20px;
}

.twitter-btn:focus {
    border: 2px solid black;
}

