body {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    /* overflow: hidden; */
    position: relative;
}



#particles {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100vw;
    height: 100vh;
}

.text-top {
    z-index: 2;
    margin-top: 400px;
    transform: scale(0.7);
    position: relative;
}

.text-top h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 5px #ff8c00;
    max-width: 90vw;
}

.circle-wrapper {
    width: 300px;
    height: 300px;
    z-index: 2;
}

.dog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 20px #fff4;
}

.text-bottom {
    margin-top: 30px;
    z-index: 2;
}

button {
    padding: 16px 32px;
    background: #7f5eff;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 15px #7f5effaa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px #a68cffcc;
}

.convencer {
    margin-top: 30px;
    text-align: center;
    max-width: 400px;
    color: #bbb;
    font-size: 1rem;
    padding-bottom: 10vh;
  }
  
  .dog-preview {
    margin-top: 20px;
    max-width: 200px;
    border-radius: 10px;
    box-shadow: 0 0 10px #7f5eff88;
  }

@media (max-width:768px) {
    .circle-wrapper {
        width: 200px;
        height: 200px;
        z-index: 2;
    }
}