@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');

:root {
    --white: #e6dbc1;
    --dark-white: #b3aa96;
    --darkgreen: #022e1e;
    --lightgreen: #0a552a;
    --light-text: #151515cc;

}
body {
    background: #011306;
}


.image_bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: auto;
    opacity: 0.3;
    filter: blur(6px);

}

* {
    font-family: "Cormorant Garamond", serif;
    transition: 0.15s ease-in-out;
    color: var(--white);
}

.container {
    height: 100vh;
    display: flex;
}

.inner_container {
    margin: auto;
    text-align: center;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 32px;
    font-weight: 300;
}