body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
section {
    height: 75vh;
    position: relative;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
section::after {
    content: '';
    background-image: url(image.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.4;
    animation: traveling 20s infinite;
}
section h1 {
    color: #fcbe87;
    font-size: 35px;
    text-transform: uppercase;
    letter-spacing: 10px;
}
section p {
    color: white;
    font-size: 15px;
    margin-bottom: 50px;
}
section div {
    position: absolute;
    z-index: 1;
    width: 75%;
    text-align: center;
}
section a {
    color: #fcbe87;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
    border: 2px solid #fcbe87;
    padding: 10px 20px;
    transition: 0.7s;
}
section a:hover {
    background-color: #fcbe87;
    color: #000;
    transition: 0.7s;
}
article {
    padding: 25px;
    text-align: justify;
}

@keyframes traveling {
    50%  { transform: scale(2); }
    100% { transform: scale(1); }
}