@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,700&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

html {
    background: linear-gradient(to bottom, #001426, #685e77);
}

body {
    background: transparent;
    font-family: "Playfair Display", serif;
    color: white;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

header {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    align-items: center;
    padding: 40px 40px 10px 40px;
}

.left {
    display: flex;
    justify-content: flex-start;
}

.center {
    text-align: center;
}

.right {
    /* empty*/
}

h1 {
    font-weight: 700;
    font-size: 36px;
    margin: 10px 0 0 0;
}

.tagline {
    text-align: center;
    font-size: 32px;
    line-height: 1.4;
    margin-top: 40px;
}


.title {
    font-size: 63px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

main {
    padding: 20px;
}












