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

body{
    font-family: Quasimoda, sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(24, 24, 24);
}

.container{
    align-items: center;
    /* background: linear-gradient(to bottom, #00e1ff, #00f7ff, #ffa836); */
    
    background-image: url(medias/telluratebanner.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
    height: 60em;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

/* .backgroundimg{
    background-image: url(medias/SINGLE_2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;

} */

.profilpicture{
    border-radius: 50%;
    width: 125px;
}

.profil-name{
    font-size: 20px;
    margin-bottom: 60px;
}

.link{
    /* border: 0.2px solid rgb(255, 255, 255); */
    /* border: 1px solid rgb(247, 177, 73); */
    /* border-radius: 50px; */
    color: rgb(255, 255, 255);
    background-color: rgba(8, 8, 8, 0.699);
    display: flex;
    height: 100%;
    justify-content: center;
    max-width: 50em;
    width: 100%;
    margin-bottom: 18px;
    position: relative;
    text-align: center;
    text-decoration: none;
    align-items: center;
    transition: transform .4s;
    /* transition: color .4s; */
    opacity: 0.80;
    font-size: 1.09em;
}

.link-icon{
    width: 23px;
    position: relative;
    right: 10px;
}

/* Médias query pour les appareils mobiles et tablettes */
@media (min-width: 769px) {
    /* Désactiver les effets hover sur les liens */
    .link:hover {
        transform: scale(1.02);
        color: rgb(255, 255, 255);
        background-color: rgba(8, 8, 8, 0.699);
        opacity: 0.81;
        /* Styles spécifiques pour les appareils mobiles et tablettes (sans effet hover) */
    }

    .link {
        width: 50%;
    }

    /* body{
        font-weight: bold;
    } */
}

@media (min-width: 769px) {
    .link {
    font-size: 1.25em;
    }
}

/* .text{
    text-align: justify;
    color: rgb(255, 255, 255);
    background-color: black;
    padding: 60px;
} */

h3{
    text-align: center;
    margin-bottom: 6px;
    padding-bottom: 10px;
}

h2 {
    padding-bottom: 20px;
    font-size: large;
}


