body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: black;
}

body {
    background-image: url('images/BrainWallpaper.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: Arial, sans-serif;
}

.overlay {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
}

.content {
    position: relative;
    width: 42%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.content::before {
    content: '';
    position: absolute;
    right: -15px; /* Adjust this value for the width of the gradient */
    top: 0;
    width: 15px; /* Adjust this value for the width of the gradient */
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 135, 255, 1) 0%, rgba(0, 135, 255, 0.3) 50%, rgba(255, 0, 255, 1) 100%);
    filter: blur(10px);
}

.content-inner {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title {
    font-size: 10em;
    font-family: monospace;
    font-style: italic;
    color: #0087ff;
    margin-bottom: 10vh;
}

.clock {
    font-size: 3em;
    font-family: monospace;
    color: white;
    margin-bottom: 20px;
}

.search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
}

input[type="text"] {
    flex-grow: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid white;
    border-radius: 25px;
    background: rgba(50, 50, 50, 0.0); /* Dark gray color */
    color: white;
    width: 90%;
}

.bookmarks {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.bookmarks a:hover {
    background: rgba(0, 135, 255, 0.2);
}

.bookmark-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid white;
    overflow: hidden;
    padding: 10px;
    background: rgba(50, 50, 50, 0.0); /* Dark gray color */
}

.bookmark-icon img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

@media (max-width: 2500px) {
    .content {
        width: 50%;
    }
}

@media (max-width: 2000px) {
    .content {
        width: 60%;
    }
}

@media (max-width: 1500px) {
    .content {
        width: 70%;
    }
}

@media (max-width: 1200px) {
    .content {
        width: 100%;
    }
    .title {
	font-size: 5em;
    }
}
