body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    cursor: default;
    visibility: hidden;
}

.con {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(255,255,255,0.5);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 90%;
    height: 90%;
    cursor: default;
    overflow-y: scroll;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    width: 100%;
    cursor: default;
}

.back {
    position: relative;
    cursor: default;
}

h2 {
    text-align: center;
}

label {
    margin-bottom: 5px;
    display: block;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="submit"] {
    width: 10%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="submit"] {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

button:hover {
    background-color: #0056b3;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

a {
    display: block;
    color: #007bff;
    text-align: center;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

body {
    height: 100vh;
    width: 100%;
    cursor: pointer;
    background: linear-gradient(45deg, #ff00cc, #00ffcc, #cc00ff, #ff00cc);
    background-size: 400% 400%;
    animation: gradientAnimation 15s infinite;
    overflow-x: hidden;
    background-attachment: fixed;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.welcome {
    text-align: center;
    margin-bottom: 20px;
}

.about,
.services,
.contact,
.credits,
.clicker {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.collapsed {
    display: none;
}

.contact p {
    font-style: italic;
}

.credits p {
    font-weight: bold;
}

.navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: transparent;
    padding: 10px;
    border-radius: 8px;
    position: relative;
}

.nav-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.navb {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    flex: 1 1 auto;
}

.navb:hover {
    background-color: #0056b3;
}

.menu-btn {
    display: none;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.menu-btn:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-items {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav-items.show {
        display: flex;
    }

    .navb {
        flex: none;
        width: 100%;
        margin: 0;
    }

    .menu-btn {
        display: block;
    }
}

#popup {
    display: none;
    cursor: default;
    position: fixed;
    top: 10%;
    right: 0;
    background-color: #4CAF50;
    color: #fff;
    padding: 20px;
    border-radius: 10px 0 0 10px;
    transform: translateY(-50%);
    z-index: 1000;
}
ul {
    list-style-position: inside;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}



@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

.circle-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1;
    width: 50px;
    height: 50px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.circle-btn:hover {
    background-color: #555;
}
