*,
html {
    font-family: "Roboto Mono", sans-serif;
    font-size: 15px;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    color: rgba(33, 33, 33, .84);
}

:root {
    --color-paper: rgb(252, 252, 249);
    --color-bg: rgb(240, 239, 228);
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-bg);
    background-image: url('../images/texture.png');
    background-repeat: repeat;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: -webkit-radial-gradient(rgb(0, 0, 0) 0px, transparent 50%);
    /* background-image:
        radial-gradient(at 12% 65%, hsla(35, 100%, 75%, 1) 0px, transparent 50%),
        radial-gradient(at 73% 22%, hsla(56, 100%, 69%, 1) 0px, transparent 50%),
        radial-gradient(at 49% 74%, hsla(10, 100%, 72%, 1) 0px, transparent 50%),
        radial-gradient(at 35% 91%, hsla(16, 100%, 74%, 1) 0px, transparent 50%),
        radial-gradient(at 46% 3%, hsla(18, 100%, 62%, 1) 0px, transparent 50%),
        radial-gradient(at 53% 62%, hsla(24, 100%, 64%, 1) 0px, transparent 50%),
        radial-gradient(at 70% 62%, hsla(41, 100%, 76%, 1) 0px, transparent 50%); */
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    opacity: 0.1;
}

main,
header,
footer {
    display: flex;
    margin: 0;
    flex-direction: column;
    padding: 0;
    justify-content: center;
    align-items: center;
}

main {
    height: 100vh;
}

header {
    height: 96px;
}

footer {
    height: 48px;
}

footer p {
    color: rgba(33, 33, 33, .);
}

section {
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 0;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

section p {
    text-align: center;
}

#dvnclogo {
    /* stroke: #313131;
    stroke-width: 1px;
    stroke-opacity: 80%;
    stroke-linejoin: round;
    stroke-linecap: round; */
    fill: #212121;
    width: 33vw;
    max-width: 640px;
}

#dvnclogoflat {
    stroke: rgba(33, 33, 33, .06);
    stroke-width: .5px;
    stroke-opacity: 80%;
    stroke-linejoin: round;
    stroke-linecap: round;
    fill: var(--color-paper);
    width: 33vw;
    max-width: 640px;

    #dvnclogo #d {
        fill-opacity: 80%;
    }

    #dvnclogo #v {
        fill-opacity: 20%;
    }

    #dvnclogo #n {
        fill-opacity: 40%;
    }

    #dvnclogo #c {
        fill-opacity: 60%;
    }

    @media only screen and (max-width: 768px) {
        #dvnclogo {
            max-width: 50vw;
        }
    }
}