/* General Reset */
body {
   font-family: 'Montserrat', sans-serif, Arial;
    background-color: #181818;
    font-size: 16px;
    letter-spacing: 0.2px;
    color: #e0e0e0;
    text-align: center;
    margin: 0;
    padding: 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    font-family: 'Roboto', sans-serif;
    text-transform: capitalize;
    letter-spacing: -0.1px;
    opacity: 0.7;
    color: #e0e0e0;
}
hr {
    height: 0;
    border: 2px solid #404142;
    opacity: 0.1;
    box-sizing: content-box;
}

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

a {
    transition: all 0.3s;
    color: #8ab4f8;
}

a:hover, a:focus, a:active, a:visited {
    text-decoration: none;
}

.btn {
    text-transform: capitalize;
    font-weight: 600;
    transition: all 0.6s;
    color: #fff;
}


.btn-yellow {
    background-color: #f4b400;
    color: #000;
    opacity: 0.8;
    transition: all 0.6s;
}

.btn-yellow:hover {
    opacity: 0.9;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-red {
    background-color: #db4437;
    color: #fff;
    opacity: 0.8;
    transition: all 0.6s;
}

.btn-red:hover {
    opacity: 0.9;
    text-transform: uppercase;
    cursor: pointer;
}

.about {
    padding: 20px;
    margin-top: 20px;
    color: #e0e0e0;
}

.about span {
    font-size: 2em;
    color: #8ab4f8;
}

.about p {
    opacity: 0.6;
}

.about p span {
    color: #8ab4f8;
    font-size: 1em;
    opacity: 1.0;
    font-weight: bolder;
    transition: all 0.8s;
}

.about p span:hover {
    letter-spacing: 0.1px;
    text-transform: uppercase;
    cursor: pointer;
}

.about a {
    text-decoration: none;
    font-weight: bold;
    color: #8ab4f8;
}

.about a:hover {
    color: #e0e0e0;
}


.main .about {
    width: 31.333333%;
    transition: all 0.3s;
    margin-right: 20px;
    border: 3px solid #333;
    border-radius: 5px;
}

.main .about:hover {
    box-shadow: 3px 3px 10px #222;
    transform: translateY(-10px);
}

.main-img {
    max-width: 40%;
    border: 4px solid #444;
    border-radius: 50%;
    transition: all 0.3s;
}

.main-img:hover {
    transform: scale(1.05);
    cursor: pointer;
    filter: grayscale(100%);
}

ul.social li {
    list-style: none;
    display: inline-block;
    margin: 10px 5px;
}

ul.social li a {
    padding: 0 10px;
    color: #8ab4f8;
}

ul.social li a:hover {
    color: #e0e0e0;
}

.fa {
    color: #8ab4f8;
    opacity: 0.8;
}

.fa:hover {
    opacity: 0.8;
    color: #dd5138;
}

.song{
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    letter-spacing: 0.2px;
    color: #e0e0e0;
    text-align: center;
    opacity: 0.6;
}

.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    padding: 15px;
    text-align: center;
    z-index: 1000;
}

.cookie-consent button {
    background-color: #007bff;
    color: #e0e0e0;
    border: none;
    padding: 10px 20px;
    margin-left: 10px;
    cursor: pointer;
}

.cookie-consent button:hover {
    background-color: #0056b3;
}
.button-link {
    display: inline-flex; /* Use flexbox for alignment */
    align-items: center; /* Center align items */
    padding: 8px 16px; /* Add padding */
    border: 1px solid #ddd; /* Add border */
    border-radius: 8px; /* Rounded corners */
    text-decoration: none; /* Remove underline from links */
    color: #000; /* Set link color */
    font-size: 18px; /* Set font size */
    transition: background-color 0.3s, border-color 0.3s; /* Smooth transition */
}

.button-link:hover {
    background-color: #f0f0f0; /* Background color on hover */
    border-color: #ccc; /* Border color on hover */
}

ul {
    list-style-type: none; /* Remove default bullets */
    padding: 0;
}

li {
    padding: 10px 0; /* Space between list items */
}
.main-content {
    padding: 20px;
    width: 70%; /* Main content takes up 70% of the screen width */
    float: left; /* Align content to the left */
}

#code-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 30%; /* Overlay takes up 30% of the screen width */
    height: 100%;
    background-color: rgba(30, 30, 30, 0.6); /* Semi-transparent */
    overflow: hidden;
    z-index: 1000; /* Ensures it stays on top of other content */
}

pre {
    margin: 0;
    padding: 20px;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 14px;
    color: #e0e0e0;
    overflow-y: hidden;
    max-height: 100%;
    font-family: monospace;
}
.tiny-icon {
    width: 24px; /* Set the width of the icon */
    height: 24px; /* Set the height of the icon */
    margin-right: 12px; /* Space between the icon and the text */
    vertical-align: middle; /* Align the icon with the text */
}

.social a {
    text-decoration: none; /* Remove underline from links */
    color: #000; /* Set link color */
    font-size: 18px; /* Set font size */
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center align items */
    padding: 8px 16px; /* Add padding */
    border: 1px solid #ddd; /* Add border */
    border-radius: 8px; /* Rounded corners */
    transition: background-color 0.3s, border-color 0.3s; /* Smooth transition */
}

.social a:hover {
    background-color: #f0f0f0; /* Background color on hover */
    border-color: #ccc; /* Border color on hover */
}

@media (max-width: 767px) {
    .main .about {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .main .about {
        width: 49%;
        margin-right: 7px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .main .about {
        width: 49%;
        margin-right: 9px;
    }
}








