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

html {
    scroll-behavior: smooth;

}

:target {
    scroll-margin-top: 7rem;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    /* font-family: Frank Ruhl Libre; */
    /* font-family: 'Times New Roman', serif; */
    font-family: "Lora", serif;
    /* font-weight: 400; */
    width: 100%;
    margin: 0;
}

div {
    box-sizing: border-box;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    /* box-shadow: 0px 4px 5px 10px white; */
    backdrop-filter: blur(4px);
    padding-top: 2rem;
    z-index: 1;
}

.headerTop {
    display: flex;
    flex-flow: row nowrap;
    align-items: baseline;
    justify-content: space-evenly;
}

.headeritem {
    color: #424242;
    font-size: 1.25rem;
    cursor: pointer;
}

.menu {
    display: flex;
    align-items: row;
    gap: 30px;
}

#mobilemenu {
    display: none;
    flex-flow: column nowrap;
    align-items: center;
}

.burgermenu {
    display: none;
}

@media screen and (max-width: 800px) {
    .menu {
        display: none;

    }

    .burgermenu {
        display: block;
    }

    .headerTop {
        justify-content: space-between;
        padding: 0 1.5rem 0 1.5rem;
    }
}

.contentwrap {
    width: 100%;
    position: relative;
    top: 7rem;
    padding: 1rem;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.horizontal {
    display: flex;
    flex-flow: row nowrap;
    gap: 30px;
}



.seperator {
    /* margin: 3rem 0 3rem 0; */
    max-width: 300px;
    width: 60%;
    justify-self: center;
}

.contentgrid {
    display: grid;
    grid-template-columns: 1fr 4fr;
    grid-template-rows:
        [interest1] auto
        [sep1] auto 
        [pub6] auto
        [pub3] auto
        [pub4] auto
        [pub5] auto
        [pub1] auto
        [pub2] auto
        [sep2] auto
        [cv0] auto
        [cv1] auto
        [cv2] auto
        [cv3] auto
        [sep3] auto
        [contact1] auto
        [sep4] auto
        [cv4] auto
        [cv5] auto
        [cv6] auto
        [cv7] auto;
    gap: 3rem 1.5rem;

}

.left {
    font-size: 1.25rem;
    font-weight: 500;
    text-align: right;
    /* padding-right: 1.5rem; */
    align-content: top;
    vertical-align: top;
    line-height: 1.5rem;

}

.right {
    font-size: 0.875rem;
    font-weight: 400;
    text-align: left;
    /* padding-bottom: 3rem; */
    line-height: 1.5rem;
}