@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&display=swap');

body {
    font-family: 'Orbitron', sans-serif;
    background-color: #1a1a1a;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
}

h1 {
    font-size: 2.5em;
    color: #00e6e6;
    text-align: center;
    text-shadow: 0 0 10px #00e6e6;
    margin-bottom: 20px;
}

.info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.info p {
    background-color: #222;
    border-radius: 10px;
    padding: 10px;
    font-size: 1.1em;
    color: #00e6e6;
    box-shadow: 0 0 5px rgba(0, 230, 230, 0.5);
    position: relative;
    overflow: hidden;
}

.info p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(0, 230, 230, 0.3) 0%, rgba(0, 230, 230, 0.1) 100%);
    opacity: 0;
    transition: all 0.5s;
    pointer-events: none;
}

.info p:hover::before {
    opacity: 1;
}

.info span {
    font-weight: bold;
    color: #fff;
}

/* Add this code to the end of both styles-fun.css and styles-tech.css files */
.toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.toggle input[type="checkbox"] {
    display: none;
}

.toggle .slider {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    background-color: #ccc;
    border-radius: 34px;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.toggle .slider::before {
  content: "";
position: absolute;
width: 26px;
height: 26px;
background-color: white;
border-radius: 50%;
left: 4px;
top: 4px;
transition: transform 0.3s;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.toggle input:checked + .slider {
background-color: #00e6e6;
}

.toggle input:checked + .slider::before {
transform: translateX(26px);
}

@media (max-width: 600px) {
.container {
padding: 20px;
}
}

/* text to use vpn */
h3 {
text-align: center;
color: #ffffff;
}

