* {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html{
    max-width: 100vw;
}

body {
    font-family: 'Raleway';
    font-size: 20px;
    background-color: rgb(2 21 42);
    margin: 0;
    padding-top: 80px;  
    -webkit-font-smoothing: antialiased;
    color:rgb(255, 238, 220);
    min-height: 100vh;
    overflow-x: hidden;
}

.cover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    filter: blur(30px);
    background-image: linear-gradient(rgba(14, 11, 56, 0), rgb(14, 11, 56)), url("../ressources/images/export.svg");
    background-size: cover;
    background-position: center;
}

p {
    font-size:  20px;
}

ul {
    list-style: none;
}

li > a {
    color: inherit;
    text-decoration: none;
}

.content {
    width: 100vw;
    max-width: 100%;
    margin: auto;
}

.section {
    padding-top: 5%;
    margin: auto;
    width: 100vw;
    max-width: 100%;
}

.section_content {
    width: 70vw;
    margin: auto;
    max-width: 100%;
    display: flex; 
    justify-content: center;
    flex-direction: column;
}

.section_title {
    text-align: center;
    padding-bottom: 60px;
    font-family: "Rubik";
    color: white;
}

.footer{
    position: relative;
    padding-top: 100px;
    height: 200%;
}

.cover-image-footer {
    position: absolute;
    width: 100%;
    height: 200%;
    z-index: -1;
    filter: blur(30px);
    background-image: linear-gradient(rgb(2 21 42), rgb(2, 25, 51, 0)), url("../ressources/images/export.svg");
    background-size: cover;
    background-position: center;
}

.footer-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    font-size: 18px;
    transform: translateY(200px);
    font-family: "Space Mono";
}

.contact-links{
    height: 40px;
}

.contact-list{
    display: flex;
    font-size: 24px;
}

.contact-item{
    margin: 10px; 
    display: flex;
    align-items: center;  
}

.contact-link {
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.copyright a {
    text-decoration: none;
    color: white;
}

.copyright a:hover {
    color: #007383;
}