@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

h1 {
    font-family: 'Bangers', cursive;
    text-align: center;
    font-size: 3em;
    color: #ff6e7f;
    margin-bottom: 20px;
}

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

.info p {
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    font-size: 1.1em;
    color: #333;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.info span {
    font-weight: bold;
}

/* 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;
}
}

h3 {
text-align: center
}
