.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    
    background-repeat: no-repeat; 
    background-color: #FFF;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader img {
    width: 100px;
}

.disappear {
    animation: vanish 1s forwards;
}

@keyframes vanish {
    100%{
        opacity: 0;
        visibility: hidden;
    }
}

.cover {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url("images/hyde_park_gloucester_sq_cover.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: bottom;
}

@media (min-width:1200px) {
    .cover {background-position: 50% 100%;}
}

@media (max-width: 600px) {
    p {
        text-shadow: 0px 0px 3px rgb(30,30,30);
    }
}
