body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  
h1 {
    text-align: center;
}

.button {
    background-color: #1ed760;
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 30px;
    padding: 12px 24px;
    margin: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0px 0px 20px #00ff15;
}

.button:active {
    transform: rotate(360deg);
}

.gradient-text {
    background-image: linear-gradient(to right, white 50%, #00ff00 50%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 48px;
}

.devs-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.dev {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px;
}

.dev img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 5px solid #00ff00;
    box-shadow: 0px 0px 20px #00ff15;
    transition: transform 0.2s ease-in-out;
}

.dev img:hover {
    transform: scale(1.2);
}

.dev p {
    font-size: 35px;
    font-weight: bold;
    background-image: linear-gradient(to right, white 50%, #00ff00 50%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

a {
    text-decoration: none;
    border-bottom: none;
}
