@import url('https://fonts.googleapis.com/css2?family=Iosevka+Charon:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    --fond: rgba(0, 0, 0, 0.5);
    --border: 1px solid rgba(255, 255, 255, 0.4);

    margin: 0;
    padding: 0;
    
    font-size: 18px;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgb(4, 18, 5);
    background-image: url('img/fond.jpg');
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

#degrade {
    height: 100vh;
    width: 100vw;
    z-index: 1;
    position: absolute;
    background-color: rgb(4, 18, 5);
    background: linear-gradient(to bottom, rgb(4, 18, 5) 0%, rgba(4, 18, 5, 0) 50%, rgb(4, 18, 5) 95%);
}

#content {
    z-index: 2;
    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    color: white;
    font-family: "Iosevka Charon", monospace;
    font-weight: 700;
    font-style: normal;
    letter-spacing: -4%;
    text-align: center;
}

.container {
    margin: 20px 0;
}

h2 {
    font-size: 25px;
    text-shadow: 0px 0px 20px rgb(0, 0, 0);
}



#heure span {
    font-size: 65px;
    text-shadow: 0px 0px 20px rgb(0, 0, 0);
}

#secondes {
    font-size: 30px !important;
    color: rgba(255, 255, 255, 0.8);
}



.bus {
    display: flex;
    flex-direction: row;
    margin-top: 15px;
    padding: 20px;
    background: var(--fond);
    backdrop-filter: blur(4px);
    border: var(--border);
    border-radius: 20px;
    width: 75vw;
    height: 6vh;
}

.bus-num {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6vh;
    width: 6vh;
    font-size: 25px;
    border-radius: 12px;
}

.bus-texte {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    height: 6vh;
    padding-left: 20px;
}

.bus-dest {
    font-size: 25px;
}

.bus-from, .nom-arret {
    font-size: 15px;
    font-weight: 200;
}

.nom-arret {
    font-weight: 500;
}

.bus-horaire {
    font-size: 17px;
    font-weight: 400;
}

#c5-laurent .bus-num {
    background-color: rgba(255, 149, 1, 0.7);
}

#c7-bruz .bus-num, #c7-jacques .bus-num {
    background-color: rgba(154, 92, 4, 0.7);
}



#liens {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: calc(75vw + 40px);
    margin-top: 15px;
}

.a-lien {
    width: 6vh;
    height: 6vh;
    padding: 20px;
    background: var(--fond);
    backdrop-filter: blur(4px);
    border: var(--border);
    border-radius: 20px;
}

.lien {
    height: 100%;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lien img {
    max-width: 100%;
    max-height: 100%;
}