
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500&family=Qwitcher+Grypen&display=swap');

body {
    background: #FAF9EE;
    background-image: url(background-3.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100dvh;
    flex-direction: column;
    margin: 0;
    overflow: hidden;
    background-size: cover;
}
.main {
    text-align: center;
}
.main:before {
    position: absolute;
    content: '';
    background: rgba(255, 255, 255, .7);
    width: 500px;
    top: -100%;
    height: 300%;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
}

img.logo {
    opacity: 0.9;
    margin-bottom: 100px;
    width: 150px;
}

h1 {
    color: #77AF9C;
    font-size: 113px;
    line-height: 0px;
    font-family: 'EB Garamond', serif;
    font-weight: 400;
}

p.floral-text {
    font-family: 'Qwitcher Grypen', cursive;
    font-size: 60px;
    color: #1B4211;
}
p {
    color: #77AF9C;
    font-size:24px;
}

a {
    color: #77AF9C;
    transition: .3s;
    text-decoration: none;
}
a:hover {
    color: #A4778B;
}

@media only screen and (max-width: 600px) {
    .main {
        width: 100%;
    }
    .main:before {
        width: 100%;
        background: rgba(255, 255, 255, .9);
    }
}