#wrapper{
    background-image: url("../images/valentine_background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

body {
    margin: 0;
}

header {
    background-color: rgb(209, 2, 2);
    padding: 0;
    margin: 0;
}

nav {
    padding: 0;
    margin: 0;
}

nav li {
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 10px 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease,
                transform 0.2s ease,
                box-shadow 0.3s ease;
    justify-self: center;
    text-align: center;
}

nav li:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(255, 192, 203, 0.8);
}

nav ul {
    display: grid;
    grid-auto-flow: column;  
    align-items: center;       
    list-style: none;
    margin: 0;
    padding: 15px 0;
    gap: 40px;
}

h1 {
    text-align: center;
    margin: 0;
}

section {
    text-align: center;
}

main {
    text-align: center;
}

main img {
    display: block;
    width: 300px;
    height: 300px;
    margin: auto;
}

section {
    background: rgb(229, 24, 248);
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    width: 70%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
