* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    transition: .2s linear;
}

.day {
    background: aliceblue;
}

.night {
    background: #222;
}

/*********************************************/

#splashscreen {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background: #cd5c5c;
    background: #222;
}

#splashscreen img {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    box-shadow: 0 0 10px -3px rgba(0,0,0,.3);
    position: relative;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    filter: contrast(1.2);
    animation: splashscreen 1s ease-in-out infinite;
}

@keyframes splashscreen {
    
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
    
}

/*********************************************/

footer {
    display: block;
    width: 100%;
    padding: 20px;
}

footer p {
    display: block;
    width: 100%;
    line-height: 30px;
    text-align: center;
    font-family: Poppins-Light, sans-serif;
    color: #444;
    font-weight: lighter;
    font-size: 16px;
}

.night footer p {
    color: #ddd;
}

footer span {
    border-left: 1px solid #777;
    margin-left: 10px;
    padding-left: 10px;
}

.night footer span {
    border-left: 1px solid #ddd;
}

footer a {
    color: blueviolet;
    font-family: Poppins-Regular, sans-serif;
    font-weight: normal;
}

.night footer a {
    color: skyblue;
}

@media only screen and (max-width: 700px){
    
    footer p {
        font-size: 14px;
    }
    
    @media only screen and (max-width: 500px){
        
        footer p {
            font-size: 12px;
            text-align: left;
        }
        
        footer p span:last-child {
            display: block;
            margin: 0;
            padding: 0;
            border: 0;
        }
        
    }
    
}