.page {
  background-color: lightskyblue;
  width: 70%;
  margin: auto;
  min-height: 100vh;

}
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.site-logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.site-nav {
    display: flex;
    gap: 24px;
}

.site-nav a {
    text-decoration: none;
    
}

.header-sun {
    margin: 0;
    font-size: 28px;
}
.welcome {
    text-align: center;
    padding: 80px 20px;
    border-bottom: 2px solid black;
}


.welcome h1 {
    font-size: 38px;
    font-family: Georgia, serif;
}
.welcome img {
    width: 200px;
    max-width: 100%;
    height: auto;
}
.scrollbox {
    height: 180px;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: pink;
    border: 2px solid black;
    box-sizing: border-box;
    
}

.ticker {
    text-align: center;
    background-color: yellow;
    overflow: hidden;
}

.ticker p {
    white-space: nowrap;
    animation: ticker-move 15s linear infinite;
}
@keyframes ticker-move {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-150%);
    }
}
.columns {
    display: flex;
    padding: 20px;
    gap: 20px;

}
.left,
.middle,
.right {
    flex: 1;
    min-height: 300px;
        padding: 40px;
    background-color: white;
    text-align: center;
}

.left nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}
.left nav a {
          padding: 10px;
    background-color: lightblue;
    text-decoration: none;
    border: 10px lightblue;
    border-radius: 20px;
}
.sunnyside-intro {
      font-size: 18px;
    text-align: center;
}
.resident-intro {
  text-align: center;
}
.residents {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
        text-align: center;
}
body {
    background-image: url("Beach.png");
    color: black;
    font-family: Verdana;
}