body {
    font-family: 'Montserrat Alternates', sans-serif;
    background: url('https://a4nger.com/mail/img/bg.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.1);
}

a {
    color: #00bcd4;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:focus {
    color: #0097a7; 
    text-decoration: underline;
}

.search-box {
    font-family: 'Montserrat Alternates', sans-serif;
    background-color: #1c1c1c;
    padding: 2rem;
    margin-top: 85px;
    margin-bottom: 100px;
    border-radius: 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 600px;
    width: 100%;
    animation: fadeIn 1s ease-out;
    position: relative;
    overflow: hidden;
}

.search-box::before {
    content: '';
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://a4nger.com/mail/img/bg.png') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
    z-index: -1;
}

.search-box h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.search-box a {
    font-size: 1.2rem;
    margin-top: 1rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #00bcd4;
    border-radius: 5px;
    color: #fff;
    transition: background-color 0.3s ease;
}

.search-box a:hover {
    background-color: #0097a7;
}

.result-item {
    background-color: #2a2a2a;
    border-radius: 10px;
    margin: 1rem 0;
    padding: 1rem;
}

.result-item h3 {
    margin: 0;
    font-size: 1.5rem;
}

.result-item p {
    margin: 0.5rem 0;
}
