body {
    height: 100vh;
    margin: 0;
    font-family: "Fuzzy Bubbles", sans-serif;
    font-size: 2.2em;
    font-weight: bold;
    background-image: url(images/homeBG.png);
    text-shadow: 3px 3px 3px #ababab;
}

main {
    text-align: center;
}

#pet-selection, #chose-pet {
    text-align: center;
}

#chose-pet {
    display: flex;
    flex-direction: column;
    align-items: center;
}


#topnav {
    overflow: hidden;
    background-color: #0044ff;
    box-shadow: 2px 2px black;
    position:sticky;
    top:0;
    z-index: 10000;
  }
  
  #nav{
    overflow: hidden;
    background-color: #d3d3d3;
    padding:5px;
  
  }

  #container{
    display: flex;
    justify-content: center;
    align-items: center;
  }

#scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* position: relative; */
}

#next {
    order: 2;
    /* position: absolute;
    left: -120px; Adjust this value as needed */
}

#pet{
    width:200px;
    height:200px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10%;
}

.dog1 {
    width: 200px;
    height: 200px;
    background-image:url(images/dog.jpg);
}

.cat1 {
    width: 200px;
    height: 200px;
    background-image:url(images/cat1.jpg);
}

.cat2 {
    width: 200px;
    height: 200px;
    background-image:url(images/cat2.jpg);
}

.cat3 {
    width: 200px;
    height: 200px;
    background-image:url(images/cat3.jpg);
}

#start-screen {
    text-align: center;
    margin-top: 60px;
}

#main-logo {
    width: 60%;
    max-width: 500px;
    margin-bottom: 20px;
}

#start-screen h1 {

    font-size: 2.2em;
    color: #008080;
    margin: 10px 0;
}

#start-screen p {
    font-size: 1.2em;
    color: #444;
    margin-bottom: 30px;
}

#start-btn {
    padding: 12px 24px;
    font-size: 1.2em;
    font-weight: bold;
    background-color: #008d1f;
    border: none;
    border-radius: 30px;
    box-shadow: 0 4px #005c14;
    cursor: pointer;
    transition: transform 0.2s;
}

#start-btn:hover {
    transform: scale(1.05);
    background-color: #59e477;
}


#pet-selection button,
#chose-pet input[type="button"] {
    padding: 10px 20px;
    margin: 8px;
    font-size: 1.1em;
    font-weight: bold;
    background-color: #c1f0f6; /* light aqua */
    border: none;
    border-radius: 25px;
    box-shadow: 0 3px #8ed8dd;
    color: #003f5c;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

#pet-selection button:hover,
#chose-pet input[type="button"]:hover {
    background-color: #a4e4ea;
    transform: scale(1.05);
}

/* Style for pet name input */
#petName {
    padding: 10px;
    font-size: 0.5em;
    border-radius: 20px;
    border: 1px solid #ccc;
    margin-top: 12px;
    width: 200px;
    text-align: center;
}

/* Optional: Center petType label */
#petType {
    font-size: 1.3em;
    font-weight: bold;
    margin: 10px;
    color: #444;
}

/* Optional: Add spacing to scroll section */
#scroll {
    margin-top: 10px;
    margin-bottom: 10px;
}