@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300&family=Playfair+Display+SC:wght@700&family=Roboto:wght@400;700&display=swap');

body {
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Oswald', sans-serif;
    display: flex;
    flex-flow: column wrap;
    color: #242735;
    font-weight: 500;
    text-align: center;
    font-size: 19px; 
}

ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 30px;
}

a {
    text-decoration: none;
}

button {
    background-color: #4f66a5;
    color: #F9FAF8;
    border: 2px solid #4f66a5c9;
    border-radius: 12px;
    box-shadow: 2px 2px 4px #4f66a5;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 3px 13px;
    text-shadow: 1px 1px 3px #4f66a5;
}

button:hover {
    background-color: #F9FAF8;
    color: #4f66a5;
}

h2 {
    font-size: 36px;
    font-weight: extra-bold;
    color: #1f2937;
}

h3 {
    margin: 0;
    padding-bottom: 20px;
    font-size: 26px;
    font-weight: bold;
    color: #F9FAF8;
}

img {
    width: 200px;
    height: auto;
}

.bg {
    display: block;
    position: relative;
    display: flex;
    flex-flow: column wrap;
}

.bg::after {
    content: "";
    background-image: url(images/bg1.jpg);
    background-size: cover;
    opacity: 0.6;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 100px;
    background-color: #40536e;
}

.logo {
    font-size: 24px;
    color: #F9FAF8;
    font-weight: 900;
    font-family: 'Playfair Display SC', serif;
}

.header-content {
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: flex-start;
    align-self: center;
    flex-shrink: 0;
}

.header-image img {
    width: 300px;
    padding: 16px;
    border-radius: 25px;
    border: none;
}

.header-text {
    width: 300px;
    padding: 0 16px 16px;
}

.main-text {
    font-size: 37px;
    color: #F9FAF8;
    margin: 0;
    padding-bottom: 0;
}

.content {
    padding: 40px 16px 100px;
    background-color: #5b729791;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
}


.content img {
    border-radius: 30px;
    border: none;
    padding: 10px;
}



.example {
    width: 250px;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
}

.quote {
    font-size: 30px;
    font-weight: light;
    font-style: italic;
    color: #1f2937;
    padding: 40px 150px;
    display: flex;
    flex-direction: column;
    align-self: center;
    width: 400px;
}


.call-to-action {
    background-color: #4b6281;
    padding-top: 10px;
    width: 500px;
    border-radius: 20px;
    margin-bottom: 70px;
    display: flex;
    justify-content: space-evenly;
    align-self: center;
    box-shadow: 1px 1px 10px 1px;
    border: 1px solid #384a6196;
}

.call-to-action h3 {
    margin: 0;
    padding: 0;
}

.cta-text {
    text-align: left;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.cta-button {
    align-self: flex-end;
    justify-content: center;
    margin-bottom: 22px;
    background-color: #F9FAF8;
    color: #4f66a5;
}

.cta-button:hover {
    background-color: #4f66a5;
    color: #F9FAF8;
    border-color: #F9FAF8;
}


.artist-credits {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    background-color: #5b729791;
    padding: 50px;
}

.artist-credits li {
    flex-wrap: wrap;
    width: 100px;
}

a, 
.header,
.footer {
    color: #e5e7eb;
}

.footer {
    padding: 20px;
    display: flex;
    justify-content: center;
}