body
{
    margin: 0;
    padding: 0;
    background:
    radial-gradient(circle at center, #f7ecd2 60%, #d8bf85 100%);
    color: #2F2117;
    font-family: 'Source Serif 4', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}
#site-name
{
    width: 280px;
    height: 55px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    text-align: center;
    line-height: 55px;

    background:
    radial-gradient(circle at top,
    #7a1616,
    transparent 60%),
    linear-gradient(
    to bottom,
    #4a0d0d,
    #2b0000);
    margin: 10px auto 10px auto;
}
#gold-text a
{
    font-size: 40px;
    font-style: italic;
    font-family: 'Libre Baskerville';
    font-weight: bolder;

    background: linear-gradient(
        120deg,
        #3f2a0a,
        #b8962e,
        #f5e27a,
        #fff6c2,
        #d4af37,
        #8a6e2f,
        #3f2a0a
    );

    background-size:150% auto;
    background-clip:text;
    color:transparent;
}

.container
{
    width: 70%;
    height: auto;
    margin: 20px auto;

    border: 2px solid #950101;
    border-radius: 10px;
    background-color: #d8bf85;

    display: flex;
    flex-direction: column;
    align-items: center;
}
.container h2 
{
    font-family: 'Lora',serif;
    font-size: 35px;
    font-style: italic;
    font-weight: 700;
    color: #800020;
    margin: 10px auto;
}
.clubs 
{
    width: 85%;
    height: auto;
    margin: 20px auto;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
}
.clubs img
{
    border-radius: 10px;
    box-shadow: 0px 0px 2px 2px #0000008e;
}
.clubs img:hover
{
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}
.container a 
{
    color: #800020;
    font-size: 16px;
    font-family: 'Lora', sans-serif;
    font-style: normal;
    font-weight: 500;
}
.readers
{
    width: 85%;
    max-width: 100%;
    height: auto;
    margin: 10px auto;
    padding: 20px;
    border: 5px solid #950101;
    border-radius: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.readers img 
{
    width: 150px;
    height: 150px;
    margin-left: 0;

    border-radius: 100px;
    border: 2px solid #800020;
}
.fa-circle-left, .fa-circle-right
{
    font-size: 30px;
    cursor: pointer;
}
.fr
{
    width: 30%;
    height: 80%;
    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.fr p
{
    margin: 0;
    font-family: 'Source Serif 4', serif;
    font-size: 16px;
    font-weight: 500;
}
.review
{
    width: 70%;
    margin-top: 0;
    padding-top: 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 25px;
}
.review p
{
    margin: 0;
}


.quotes
{
    display: flex;
    flex-direction: column;
    align-items: center;  
    text-align: center;
    position: relative;
    animation: float 4s ease-in-out infinite;
}
@keyframes float
{
    0%
    {
        transform: translateY(0px);
    }

    50%
    {
        transform: translateY(-15px);
    }

    100%
    {
        transform: translateY(0px);
    }
}
.quotes img
{
    width: 150px;
    height: 150px;
    border-radius: 100px;
    margin-top: 20px;
}
.quotes span
{
    font-family: 'Source Serif 4', serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}
footer
{
    width: 100%;
    background-color: #4b0101;
    padding: 30px 20px 10px;
    box-sizing: border-box;
    text-align: center;
}

.footer-content
{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.site-footer
{
    padding: 10px 20px;
    border-radius: 10px;

    background:
    radial-gradient(circle at top,
    #7a1616,
    transparent 60%),

    linear-gradient(
    to bottom,
    #4a0d0d,
    #2b0000);
}

.footer-logo
{
    margin: 0;
}

.footer-logo a
{
    font-size: 30px;
    font-style: italic;
    font-family: 'Libre Baskerville', serif;
    font-weight: bolder;
    text-decoration: none;

    background: linear-gradient(
        120deg,
        #3f2a0a,
        #b8962e,
        #f5e27a,
        #fff6c2,
        #d4af37,
        #8a6e2f,
        #3f2a0a
    );

    background-size: 150% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

footer ul
{
    margin: 0;
    padding: 0;
}

footer ul li
{
    list-style: none;
    margin: 12px 0;
    text-align: left;
}

footer a,
.sm,
.contact,
.copyright
{
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    text-decoration: none;
}

.sm,
.contact
{
    text-align: left;
}

.sm h3,
.contact h3
{
    margin-bottom: 15px;
}

.sm p,
.contact p
{
    margin: 10px 0;
    line-height: 1.5;
}

.sm i,
.contact i
{
    margin-right: 10px;
}

.copyright
{
    margin-top: 25px;
    font-size: 15px;
}