        body {
            margin: 0 auto;
            font-family: Tahoma, Verdana, Arial, sans-serif;
            background-color: #151515;
            color: #ddd;
        }
        h2 {
            color: #aaa;
            text-transform: uppercase;
            margin-bottom: 1em;
        }
	h2 a {
	    color: #bbf !important;
	
	}

	

	subheader {
            background-color: #222;
            padding: 20px;
            color: #ddd;
            display: flex;
            align-items: center;
        }

        .submenu ul a {
	    color: #fff;
	    text-decoration: none;
	    display: block;
	    padding: 10px;
	}
	.submenu a:hover {
	    text-decoration: underline;
	}

        .submenu ul {
	    list-style: none;
	    padding: 0;
	    margin: 0;
	    display: flex;
	}
	a {
	    color: #bbf;
	    text-decoration: none;
	}
	a:hover {
	    text-decoration: underline;
	}

	.menu {
	    position: absolute;
	    top: 0;
	    left: 0;
	    width: 400px;
	    background-color: #333;
	    transform: translateX(-400px);
	    transition: transform 0.3s ease-in-out;
	    overflow-y: auto;
	}

	.menu ul {
	    list-style: none;
	    padding: 0;
	    margin: 0;
	}

	.menu ul li a {
	    color: #fff;
	    text-decoration: none;
	    display: block;
	    padding: 10px;
	}
	.menu a:hover {
	    text-decoration: underline;
	}
	.menu-toggle {
	    width: 30px;
	    height: 30px;
	    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><path stroke="rgb(255,255,255)" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/></svg>');
	    cursor: pointer;
	}
@media screen and (min-width: 768px) {
    .menu {
        position: initial;
        height: auto;
        width: auto;
        transform: none;
    }
    
    .menu ul {
        display: flex;
    }

    .menu ul li a {
        padding: 0;
        margin: 0 10px;
    }
    .menu a:hover {
        text-decoration: underline;
    }


    .menu-toggle {
        display: none;
    }
}
        header {
            background-color: #333;
            padding: 1em;
            color: #ddd;
            display: flex;
            align-items: center;
        }
	footer {
	    background-color: #000;
            padding: 20px;
            color: #ddd;
            display: flex;
            align-items: center;

	}
        svg {
            width: 60px;
            height: 60px;
        }
        main {
            width: 80%;
            margin: 2em auto;
            text-align: justify;
        }
        h1 {
	    text-align: center;
	    text-transform: uppercase;
            padding: 0.5em 0;
        }
        p {
            padding: 0.5em 0; 
            font-size: 1.1em; 
            line-height: 1.5;
        }
         section {
            padding: 2em;
            background: rgba(45, 45, 45, 0.8);
            border-radius: 5px; 
            margin-bottom: 2em;
        }
.columns {
    display: flex;
	background: rgba(255, 255, 255, 0);
    justify-content: space-between;
}

.columns .column {
    flex: 1;  
    padding: 1em;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-bottom: 2em;
}
.columns .column:not(:last-child) {
    margin-right: 1em;
}
        button {
            margin: 1em 0;
            padding: 0.5em 1em;
            font-size: 1.2em;
            background-color: #058; 
            color: #f3bd6a; 
            padding: 15px 30px; 
            font-size: 1.2em; 
            border: none; 
            border-radius: 5px; 
            cursor: pointer;
        }
	.social-icons {
  		display: flex;
  		justify-content: center;
  		align-items: center;
	}

.icon {
  margin: 30px; /* Adjust this to increase or decrease the spacing */
}
