/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica Neue', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-image: url('http://arielleworld.com.s3.amazonaws.com/tulips_pinkpurple.jpg');
    background-repeat: repeat;
    background-size: cover; /* Adjust as needed */
}

header, nav, section, footer {
    margin: 20px;
    padding: 20px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

header {
    background-color: #FF69B4;
    color: white;
    width: 100%;
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
}

nav {
    background-color: #FFC0CB;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    display: flex;
}

nav li {
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav a:hover {
    color: #FF69B4;
}

section {
    background-color: #fff;
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #ddd;
}

#about {
    background-color: white;
}

#social {
    background-color: #FFC0CB;
    padding: 20px;
}

.tweet-embed {
    margin-bottom: 20px;
}

#contact {
    /* Remove or change the background-color property to see the background image */
    background-image: url('http://arielleworld.com.s3.amazonaws.com/tulips_pinkpurple.jpg');
    background-repeat: repeat;
    background-size: auto; /* Adjust as needed */
}

/* Add your other styles below */
