/* style.css */

/* Reset some default browser styles */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, blockquote, figure, fieldset, legend, input, textarea, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

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

header h1 {
    color: #444;
    font-family: 'Roboto', sans-serif; 
    font-size: 2.5em; 
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #fff;
            z-index: 1000;
            justify-content: center;
            align-items: center;
	    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	    border-radius: 8px;
	    padding: 20px;
        
	 }
.modal-content {
            background: #fff;
            padding: 0px;
            max-width: 600px;
            width: 100%;
            position: relative;
        }
.modal-content .close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 20px;
            cursor: pointer;
        }
.modal-content form {
            display: flex;
            flex-direction: column;
            gap: 10px;
       }
.modal-content input, .modal-content textarea {
            padding: 8px;
            font-size: 16px;
        }

.link-list {
    list-style: none;
    padding: 0;
}

.link-list li {
    margin-bottom: 10px;
}

.link-list a {
    display: block;
    padding: 10px;
    background-color: #000000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin: 7px;
    transition: background-color 0.3s ease;
}

.link-list a:hover {
    background-color: #78FF66;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #777;
}

