body {
    font-family: 'Caveat', sans-serif;
    font-size: 12px;
}

@keyframes AnimationName {
    0%{background-position:2% 0%}
    50%{background-position:99% 100%}
    100%{background-position:2% 0%}
}

#container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(320deg, #CD2D06, #050505);
    background-size: 600% 600%;
    -webkit-animation: AnimationName 30s ease infinite;
    -moz-animation: AnimationName 30s ease infinite;
    animation: AnimationName 30s ease infinite;
    /*width: 100%;*/
    /*height: 100vh;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo {
    width: 56px;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

h1 {
    color: white;
    font-size: 64px;
    font-weight: 400;
}

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

#letstalk-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

#letstalk {
    color: white;
    background-color: black;
    border-radius: 4px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 12px;
}

@media only screen and (min-width: 430px) {
    #logo {
        width: 87px;
    }
}