body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #180356;
}

.bg {
    padding: 20px;
    text-align: center;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-size: 300% 300%;
    background-image: linear-gradient(-45deg, rgb(87, 20, 99) 0%, rgb(85, 166, 198) 25%, rgba(230, 113, 185, 0.805) 51%, rgb(8, 43, 62) 100%);
    animation: AnimateBG 20s ease infinite;
}

h1,
h2,
h3 {
    color: #000000;
    text-align: center;
    justify-content: center;
}

.font {
    font-size: 16px;
    color: #000000;
    text-align: center;
    justify-content: center;
}

header {
    padding: 20px;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
}

.hobbies {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.hobbies div {
    flex: 1 1 300px;
    max-width: 600px;
    text-align: left;
}

img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    text-align: center;
    justify-content: center;
}

.img-home {
    width: 50%;
    height: auto;
    border-radius: 8px;
    text-align: center;
    justify-content: center;
}

footer {
    margin-top: 40px;
}

footer a {
    color: #000000;
    text-decoration: none;
    margin-right: 10px;
}

footer p {
    font-size: 14px;
    margin-bottom: 10px;
}


@-webkit-keyframes AnimateBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes AnimateBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}