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

* {
    box-sizing: border-box;
}

html {
    background-color: #cdc4ba;
}

body {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-rows: 5px 100px 5px 1fr 5px 30px;
}

header {
    background-color: #772717;
    text-align: center;
    height: 105px;
}

nav,
footer {
    display: grid;
    background-color: #3d352c;
    color: cdc4ba;
    text-align: center;
    justify-content: center;
    align-content: center;
}

main {
    display: grid;
    justify-content: center;
    text-align: center;
    margin: auto;
    max-width: 1050px;
}

h1 {
    font-size: 70px;
    margin: 0;
    padding: 0;
}

p {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-style: italic;
    font-size: 32px;
    color: white;
    margin: auto;
    max-width: 80%;
    margin-top: 50px;
}

.zw_logo {
    font-family: 'Playfair Display SC', serif;
    color: white
}

.zw_circular_logo {
    display: grid;
    border-style: solid;
    border-radius: 50%;
    border-color: white;
    justify-self: center;
    margin-top: 40px;
}

.zw_circular_logo_z,
.zw_circular_logo_w {
    grid-column-start: 1;
    grid-row-start: 1;
    padding-left: 8%;
    padding-right: 4%;
    padding-top: 0%;
    padding-bottom: 2%;
}

.zw_circular_logo_z {
    align-self: start;
    justify-self: start;

}

.zw_circular_logo_w {
    justify-self: end;
    align-self: end;
}

a,
a:visited {
    color: cdc4ba;
    text-decoration: none;
}

a:hover {
    opacity: 80%;
}

.divider {
    background-color: #f9ae00;
}

.project {
    width: 300;
    height: 200;
    border-radius: 10px;
    margin: auto;
}

.banners {
    display: flex;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.pre_footer_logo {
    margin: auto;
    margin-top: 20px;
    margin-bottom: 50px;
}