*{
    box-sizing: border-box;
}

img {
    width: 240px;
}

body {
    animation: .75s ease-in-out 0s 1 slideDown;
    font-family: 'Playfair Display', serif;
    background-color: #001a2f;
    background-image: url(background.jpg);
    background-size: 130%;
    background-repeat: repeat;
    display: block;
    height: 100%;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}
section {
    align-content: end;
}

#Information {
    display: inline;
    width: 37%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 15px;
    line-height: 20px;
    color: white;
    bottom: 0;
    padding-top: 300px;
    padding-left: 10%;
    padding-right: 5%;
    text-align: right;
}

#imagination {
    text-decoration: underline;
}

li{
    list-style-type: none;
}

#Menu{
    width: 63%;
    font-size: 110px;
    float: left;
    color: #fff;
    text-shadow:
      0 0 7px #fff,
      0 0 10px #fff,
      0 0 21px #fff,
      0 0 42px #52bae7,
      0 0 82px #52bae7,
      0 0 92px #52bae7,
      0 0 102px #52bae7,
      0 0 151px #52bae7;
}


a{
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

a:hover{
    font-style: italic;
}

@media (max-width: 977px) {
    img {
        width: 200px;
    }
    li {
        font-size: 90px;
    }
    #Information {
        padding-top: 240px;
        padding-left: 15px;
    }
}

@media (max-width: 750px) {
    *{
        display: inline-block;
    }
    h1{
        display: block;
    }
    
    #Information {
        text-align: center;
        padding: 0px;
        width: 100%;
        display: block;
        padding-top: 50px;
    }
    div{
        padding-left: 20%;
        padding-right: 20%;
    }
    img{
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 50%;
        text-align: center;
    }
    li {
        text-align: center;
        display: block;
    }
    #Menu{
        width: 100%;
    }
    section {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        width: 100%;
    }
}