@import url('https://fonts.googleapis.com/css2?family=Fira+Code&display=swap');/* Reset some default styles */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
    user-select: none;
}
.divider {
    display: flex;
    justify-content: center;
}
hr {
    width: 80%;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Fira Code', monospace;
    color: #fff;
    background-color: #111;
}

/* Section styles */
.section {
    padding-top: 40px;
    height: 100vh;
}

/* About section */
#about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #111010;
    color: #ffffff;
}
#about .container {
    padding: 10%;
}
#about h1 {
    font-size: 4rem;
}
@media (max-device-width: 420px) {
    #about h1 {
        font-size: 2rem;
    }
    #about p {
        font-size: 0.8rem;
    }
    .social-icon {
        font-size: 30px;
    }
}
#about p {
    color: #cbcfd0;
    text-align: justify;
    font-size: 1rem;
}

/* Services section */
#projects {
    background-color: #151515;
    color: #fff;
    text-align: center;
}
#projects h2 {
    padding: 26px 0;
    color: #c0512b;
}
#projects h4 {
    color: #70acdd;
}
.projects__description {
    margin-bottom: 8px;
}
.projects__content {
    margin-top: 8px;
}

/* Contact section */
#contact {
    display: none !important;
    background-color: #111010;
    color: #fff;
    padding: 26px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#contact .container {
    border: 1px solid #222;
    padding: 30px;
}

/* Footer styles */
footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}
.nav_items {
    list-style: none;
    display: flex;
}
.navbar {
    width: 75%;
}

.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: left;
}
.social-links li {
    margin-right: 16px;
    transition: 0.1s ease-in-out;
}
.social-links li:hover {
    transform: scale(1.2);
}
.social-links li:active {
    transform: scale(0.8);
}
.social-icon {
    font-size: 30px;
    color: #2a71d1;
}
.language-icon{
    border: 1px solid #222;
    padding: 4px;
    background-color: #000;
}
img {
    max-height: 70vh;
}
/* Glass-like menu */
.glass-menu {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    z-index: 100;
    height: 40px;
    width: 100%;
    font-size: 30px;
    box-shadow: 0 10px 100px rgba(0,0,0,.1);
}
.card__text{
    text-align: left;
}

.glass-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 5px 5px;
}

.glass-menu li {
    font-size: 20px;
    margin: 0 10px;
}

.glass-menu a {
    text-decoration: none;
    color: #5c5c5c;
    transition: color 0.3s;
}

.glass-menu a:hover {
    color: #111;
}
.current {
    color: #8ac897 !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
.separator {
    font-size: 20px;
    color: #131212;
}
.badge {
    margin-top: 30px;
}
.badge a {
    color:#bfbfbf;
}
