/*
Note : Tout ce site est putain de libre, faite ce que vous voulez avec, j'ai tout pompé comme un connard, j'en ai putain de rien a foutre. Cordialement
*/

body {
    font-family: Montserrat;
    background: #eee;
    color: #2e2e2e;
}

body.nightmode {
    background: #2e2e2e;
    color: #eee;
}

h1 {
    display: block;
    margin: auto 100px;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    vertical-align: middle;
    font-weight: 700;
    font-size: 5em;
    text-transform: uppercase;
}

.longfuckingtext {
    font-size: 3.5em;
}

.time {
    position: absolute;
    right: 0;
    left: 0;
    font-size: 4em;
    margin: 20px;
    color: #888888;
    text-align: center;
    text-transform: uppercase;
}

.hour {
    font-size: 1.5em;
}

.fuckdate {
    opacity: .2;
}

footer {
    position: absolute;
    bottom: 0;
    margin: 25px;
    right: 0;
    left: 0;
}

.rightalign {
    position: absolute;
    width: auto;
    right: 0;
}

a {
    text-decoration: none;
    color: #7575ff;
    transition: all ease .2s;
}

a:hover {
    color: #2525ff
}

/* FUCKING RESPONSIVE VERSION */
@media screen and (max-width: 1280px) {
    .time {
        font-size: 3em;
    }
}

@media screen and (max-width: 800px) {
    h1 {
        font-size: 2.3em;
        margin: auto 25px;
    }
    
    .longfuckingtext {
        font-size: 1.5em;
    }
    
    .time {
        font-size: 1em;
    }
    
    .hour {
        font-size: 2.5em;
    }
    
    footer {
        font-size: .7em;
        text-align: center;
    }
    
    .rightalign {
        left: 0;
        display: block;
    }
}