/* style.css */

/* General Reset */
body, h1, h2, p, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: cursive;
    background-color: black;
    color: white;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    text-align: left;
    gap: 2vw;
    justify-content: space-evenly;
    align-items: baseline;
    flex-wrap: wrap;
    background: linear-gradient(90deg, black 0%, darkred 5%, darkred 95%, black);
    padding: 40px 0;
}

h1 {
    font-size: 3em;
    text-align: center;
    margin: 15px 0 0 0;
    padding: 0;
}

h2 {
    text-align: center;
    margin: 15px 0 15px 0;
}

a {
    font-size: 1.5em;
    margin-bottom: 10px;
    text-decoration: none;
    color: black;
    background-color: transparent;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}
a:hover {
    transition: all 0.5s ease;
    color: darkred;
}

li {
    background-image: url('star.png');
    background-size: 50px;
    background-repeat: no-repeat;
    background-position: 100% 50%;
    transition: all 0.5s ease;
    padding: 1.5vw;
    border-radius: 3vw;
}

li:hover {
    background-size: 600px;
    background-position-x: 50%;
}
