* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999; /* Ensure it's above all other content */
    cursor: pointer;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #202020, #111119);

    color: #f5f5f5;
    line-height: 1.6;
    background-repeat: no-repeat;
}

.container {
    position: relative; /* Ensure the container is positioned above the rain */
    width: 80%;
    margin: auto;
    padding: 20px;
    z-index: 10; /* Higher z-index to appear above the rain */
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    color: #b0b0b0;
}

section h2 {
    font-size: 1.8em;
    border-bottom: 2px solid #444;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.job, .school {
    margin-bottom: 20px;
}

.job h3, .school h3 {
    font-size: 1.5em;
    margin-bottom: 5px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

ul li {
    margin-bottom: 5px;
}

.Contacts {
    margin-top: 125px;
    text-align: center;
}

#rain-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1; /* Lower z-index to appear behind other content */
}

.raindrop {
    position: absolute;
    width: 2px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}
