@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

:root {
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: inherit;
    text-decoration: none;
}

html {
    scroll-behavior: smooth !important;
}

::-webkit-scrollbar {
    display: none;
}

#back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: gray;
    color: white;
    border: none;
    padding: 20px;
    border-radius: 50px;
    cursor: pointer;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #000;
    background-size: cover;
    color: #c5c5c5;
}

a {
    text-decoration: none !important;
}

footer {
    background-color: #191919;
}

.container-contact h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

footer p {
    font-size: 15px;
}

.email-container {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-top: 40px;
}

.email-container img {
    margin-right: 10px;
}

.email-text {
    margin-bottom: 4px;
    z-index: 1;
}

.email-text a {
    color: inherit;
    text-decoration: none;
}

.email-text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-text a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.links {
    z-index: 1;
}

.social-links img {
    margin-right: 20px;
}

.social-links .links a div img {
    transition: transform 0.3s ease;
}

.social-links .links a:hover div img {
    transform: scale(1.2);
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}



