html, body {
    margin: 0;
    padding: 0;
    /* background-color: white; */
    /* background: linear-gradient(#a8a8a8 0%, #ffffff 100%); */
    overflow: hidden;
}

body {
    background: linear-gradient(#c8c8c8 -5%, #e0e0e0 5%, #ffffff 25%);
    width: 100vw;
    height: 100vh;
}

html, body, div, a, 
p, li, td, span {
    font-family: 'Lato';
    font-size: 16px;
    color: #707070;
}

.logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.logo-container .logo {
    width: 20%;
    max-width: 200px;
    filter: drop-shadow(0 6px 6px rgba(0,0,0,0.18));
}

.logo-container .logo-canvas {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.contact-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    border-top: 1px solid #ccc;
    background-color: rgba(0, 0, 0, 0.03);
    text-align: center;
    backdrop-filter: blur(6px);
}

.contact-panel span {
    display: inline-block;
    margin: 10px 30px 10px 30px;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 1px;
}