@import url('https://fonts.googleapis.com/css2?family=Mate:ital@0;1&display=swap');

html {
    /* Prevent padding from extra width or extra hight to page */
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background-color: #ffffff;
    background-image: url("https://www.transparenttextures.com/patterns/arches.png");
    color: #000;
    font-family: Mate, serif;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-container {
    width: auto;
    max-width: 900px;
    padding: 20px 30px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: 5px 10px 10px 10px rgba(0, 0, 0, 0.2);
}

.quote-text {
    /* rem helps with responsive design */
    /* rem: relative size compared to the root element */
    font-size: 2.76rem;
}

/* Dynamically turn this on when it's needed */
.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;
    display: flex;
    justify-content: space-between;
}

button {
    cursor: pointer;
    font-size: 1.2rem;
    height: 2.5rem;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    background: #333;
    outline: none;
    padding: 0.5rem 1.8rem;
    box-shadow: 0 0.3rem rgba(121, 121, 121, 0.65);
}

/* pseudo class: hover */
button:hover {
    filter: brightness(130%);
}

/* pseudo class: active */
button:active {
    /* 0 0.3rem is the same as the box-shadow above so that when clicked, the button sinks into the page */
    transform: translate(0, 0.3rem);
    box-shadow: 0 0.1rem rgba(255, 255, 255, 0.65);
}

.twitter-button:hover {
    color: #38a1f3;
}

.fa-twitter {
    font-size: 1.5rem;
}

/* Loader */
.loader {
    border: 16px solid #f3f3f3;
    /* Light grey */
    border-top: 16px solid #333;
    /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Always have a margin one the left and right so that we have a clearly defined box */
/* media query always at the bottom to override anything else throughout the code */
@media screen and (max-width: 1000px) {
    .quote-container {
        margin: auto 10px;
    }

    .quote-text {
        font-size: 2.5rem;
    }
}