@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400;500&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 5;
    padding: 5;
    line-height: 2;
    color: #333;

    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.567), rgba(255, 255, 255, 0.288)),
        url(assets/images/unique-background-fbiwn295tlvdhd7q.jpg);
        background-size: cover;
        background-attachment: fixed;
}

a:hover {
    text-decoration: none;
    color: #6a11cb;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.page-wrapper {
    max-width: 1100px;
    margin: 20px auto;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    padding: 20px;
    background: linear-gradient(to right, #bf89fa, #2575fc);
    color: white;
    opacity: 0.95;
    border-radius: 8px;
}

/* FLOATS */
.main {
    float: left;
    width: 65%;
    padding: 20px;
    box-sizing: border-box;
}

.sidebar {
    float: right;
    width: 35%;
    padding: 7px;
    box-sizing: border-box;
    border-radius: 8px;

        
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.985), rgba(237, 204, 250, 0.684),rgba(255, 255, 255, 0.985)),
        url(assets/images/71M3G-nGF8L._AC_UF894\,1000_QL80_.jpg);
        background-size: cover;
        background-position: center;
}

.intro, .supporting div {
    margin-bottom: 20px;
    padding: 17px;
    background: rgba(255,255,255,0.9);
    border-radius: 6px;
}

.sidebar a {
    color: #0b506f;
    text-decoration: underline;
}

/* Footer */
footer {
    float: bottom;
    clear: both;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    background-color: #9fbbeb;
    border-radius: 18px;
}



a {
    color: #30ae06;
}
a:hover {
    color: #420c7b;
}



.main, .sidebar {
    margin-bottom: 20px;
}


@media screen and (max-width: 768px) {
    .main, .sidebar {
        float: none;
        width: 100%;
    }

    header {
        font-size: 90%;
    }

    body {
        background-attachment: scroll;
    }
}