
body {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    padding-left: 3rem;

    background-color: #000000;
    background-size: 400% 400%;

    -webkit-animation: AnimationName 10s ease infinite;
    -moz-animation: AnimationName 10s ease infinite;
    animation: AnimationName 10s ease infinite;
    position: absolute;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, p, a {
    font-family: 'Poppins', sans-serif;
    color: #fff;

    margin: 0;
    padding: 0;

}

h1 {
    letter-spacing: -0.6rem;
   line-height: 1.1;
    margin: 6rem 0 1rem 0;
    font-size: 8rem;
}

p {
    line-height: 1.4rem;
    font-size: .7rem;
}
p a {
    text-decoration: none;
    border-bottom: 1px solid #ffffff7d;
}

.main-block {
    width: 1010px;
    height: 600px;
}
.address-block {
    padding: 0 0 2rem 0;
    display: flex;
    align-items: flex-end;
}

.logo {
    width: 15%;
    margin-top: 3rem;
}

@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName { 
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

