header#splash {
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: visible;
    .link {
        position: absolute;
        bottom: 0;
        height: 30%;
        width: 100%;
        &:hover {
            background-image: 
                linear-gradient(to top, white 0%, transparent 50%);
        }

        > svg{
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 1rem;
            width: 3rem;
            height: 3rem;

        }
    }

    .logo {
        position: absolute;
        text-decoration: none;
        top:0;
        left: 50%;
        transform: translateX(-50%);
        margin-top: auto;
        display: grid;
        place-content: center;


        background: white;
        border-radius: 0 0 1rem 1rem;
        overflow: hidden;
        width: min-content;
        height: min-content;
        padding: 2rem 2rem 2rem 2rem;
        filter: drop-shadow(0 0 3rem white);
        display: flex;
        flex-direction: row;
        img {
            z-index: 1;
            height: 5em;
            grid-column: span 1;
            grid-row: 1/2;
        }
        h1 {
            z-index: 1;
            display: inline-block;
            grid-column: span 2;
            grid-row: 2/3;
            text-align: center;
            color: black;
            font-size: 200%;
        }
    }

    .background {
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        background-image: url('/static/images/Monpeyroux.jpg');
        background-size: cover;
        background-position: center;
    }
}

button {
    border-radius: .5rem;
    color: white;
    &[type="submit"] { background: var(--light-green); border-color: var(--dark-green);}
    &[type="Reset"] { background: var(--light-red); border-color: var(--dark-red);}
}
