body {
    background-color: #E3F2FD;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 20px;
    color: #000000;
    text-align: center;
    position: relative;
}

.nyc-image {
    position: absolute;
    top: 80px;
    left: 40px;
    width: 150px;
}

.nyc-image img {
    width: 100%;
    height: auto;
    display: block;
}

.clouds {
    position: absolute;
    top: 50px;
    width: 100%;
    z-index: -1;
}

.cloud-row {
    font-size: 30px;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 20px;
}

.cloud-move-left {
    animation: moveLeft 20s linear infinite;
}

.cloud-move-right {
    animation: moveRight 20s linear infinite;
}

@keyframes moveLeft {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

@keyframes moveRight {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

.container {
    position: relative;
    max-width: 700px;
    margin: 100px auto 80px; 
    padding-bottom: 100px; 
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    margin-bottom: 10px; 
    display: flex;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.letter {
    display: inline-block;
    transition: transform 0.2s ease-in-out, color 0.3s ease-in-out;
}

.letter:active {
    transform: translateY(-10px);
    color: #FF4136;
}

.love {
    color: red;
    transition: transform 0.3s ease-in-out;
}

.love:hover {
    transform: scale(1.5);
}

p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px; 
    transition: opacity 0.3s ease-in-out, background 0.3s ease-in-out;
    padding: 10px;
    border-radius: 10px;
}

p:hover {
    opacity: 0.5;
    background: rgba(255, 0, 0, 0.1);
}

.cityscape {
    display: flex;
    justify-content: center;
    align-items: flex-end; 
    gap: 10px;
    width: 100%;
    height: 180px; 
    padding: 10px;
    position: relative; 
    margin-top: -30px; 
}

.building {
    width: 60px;
    height: 120px; 
    background-color: #34495e;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    align-items: center;
    padding: 10px;
    position: relative;
}

.tall { height: 150px; }
.short { height: 110px; }

.windows {
    width: 15px;
    height: 15px;
    background-color: grey;
    margin: 3px;
    transition: background 0.3s ease-in-out;
}

.building:hover .windows {
    background-color: yellow;
}

  