body {
    background: #f26522;
}

body {
    background: linear-gradient(-45deg, #f26522, #e73c7e, #f26522, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body {
    overflow: hidden;
}

#clock {
    position: fixed;
    top: 10px;
    right: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: rgba(50,50,50,.5);
    color: #61dafb;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 1.5rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

#clock:hover {
    animation: pulse 1s infinite;
}

#container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    /*
    This doesn't work
    margin-left: -25%;
    margin-top: -25%;
    */
    overflow: hidden;
    width: 90%;

    padding: 20px;
    color: white;
    text-align: center;
    font-size: 122px;
    text-shadow: 2px 2px #ff0000;
}

#bdayhat {
    width: 150px;
    position: relative;
    top: -45px;
    left: 115px;
    transform: rotate(-20deg);
}

body {
    /* Existing styles */
    position: relative; /* This is important for absolute positioning within the body */
}

.top-images {
    position: absolute;
    top: 10%; /* Adjust this value to position the images in the top third of the screen */
    left: 50%;
    transform: translateX(-50%); /* This centers the .top-images container */
    width: 80%; /* Adjust this width as needed */
    display: flex;
    justify-content: space-around; /* Spaces the images evenly */
    z-index: -1000; /* Ensures the images are above other content */
}

.top-image {
    max-width: 40%; /* Adjust the size of the images */
    height: 100px; /* Keeps the aspect ratio of the images */
}

.wifi-container {
    text-align: center;
    width: 80%; /* Adjust width as needed */
    /*max-width: 600px; /* Set a max width if necessary */
}
