/*font-family: 'Josefin Sans',
sans-serif;
font-family: 'Poppins',
sans-serif;*/
body {
        background: linear-gradient(270deg, #f3d2c1, #f582ae, #8bd3dd);
        background-size: 600% 600%;

        -webkit-animation: AnimationName 30s ease infinite;
        -moz-animation: AnimationName 30s ease infinite;
        animation: AnimationName 30s ease infinite;
    }

    @-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%
        }
    }
header {
    background: #f3d2c1;
    position: fixed;
    width: 100%;
    height: 25%;
    top: 200px;
    right: 0;
    border-radius: 1em;
    opacity: 50%;
}

header h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-align: center;
    color: #001858;
}

header h1:hover {
    color: #f582ae;
    transition: color 0.5s;
    text-decoration: none;
}

header nav {
    text-align: center;
}

header nav a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-decoration: none;
    color: #001858;
    padding: 0.5em;
}

header nav a:hover {
    color: #f582ae;
    transition: color 0.5s;
    text-decoration: none;
}