@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('./background.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: center;
    align-items: center;

}


.navigation a {
    position: relative;
    color: white;
    font-size: 1.1em;
    margin: 0 7px;
    text-decoration: none;
    padding: 6px 20px;
}


.navigation a span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid white;
    border-radius: 7px;
    transform: scale(0);
    opacity: 0;
    transition: 0.5s;
}


.navigation a:hover span {
    transform: scale(1);
    opacity: 1;
}


.text h1 {
    font-size: 9em;
    font-family: 'Times New Roman', Times, serif ;
    text-align: center;
    -webkit-text-stroke: 2px #fff;
    color: transparent;
    background: url("back-text.png");
    -webkit-background-clip: text;
    background-position: 0 0;
    animation: backText 20s linear infinite alternate;

}


@keyframes backText {
    100% {
        background-position: 2000px 0;
    }
}

a {
    color: #fff;
    text-decoration: none;
}