/*  Tag styles  */
* {
    margin : 0;
    padding: 0;
}

body {
    font-family: 'satoshi', 'Lucida Sans Regular', sans-serif;
    display:flex;
    color:var(--font-color);
    font-weight: var(--medium);
    font-size: 14px;
}

h1 {
    font-size: 20px;
    letter-spacing: -0.8px;
    font-weight: var(--bold);
    margin: 35px 0;
}

aside {
    width: 50%;
    background-color: var(--background-color-bis);
    display: flex;
    justify-content: center;
}

svg {
    width: 50%;
}

a {
    color: var(--font-color);
}

input {
    font-size: 12px;
    height: 40px;
    width:270px;
    border: 1px solid var(--outline-color);
    border-radius:6px;
    padding: 0 15px;
    margin: 5px 0 25px 0;
}
input:focus-visible {
    outline-color: var(--secondary-color);
}

/* class styles */

.logo {
    width:150px;
    margin: 0 0 0 -3px; 
}

.height-100 {
    height:100%;
}
.main {
    background:var(--background-color);
    width: 50%;
    display: flex;
    align-items: center;
    border-right:1px solid var(--outline-color);
}
.inside-main {
    width:300px;
    margin: auto;
}

.primary-button {
    padding: 10px 27px;
    background-color: var(--primary-color);
    color : white;
    border: none;
    font-size: 14px;
    width:150px;
    margin: 0;
    cursor: pointer;
    transition: 200ms all ease-in-out;
}
.primary-button:hover {
    background-color: var(--primary-color-bis);
}
.separation {
    display: flex;
    width:1px;
    height:20px;
    background-color: var(--font-color);
    position:relative;
    left: 38.95px;
}
.ul-lang {
    float:right;
    display:flex;
    justify-content: space-around;
    align-items: center;
}

.li-lang {
    padding: 0px 10px 0 10px;
}

.ul-lang a {
    font-size : 12px;
    font-weight: var(--medium);
}

.ul-lang > a {
    font-weight: var(--bold);
    font-size: 14px;
    text-decoration: none;
    pointer-events: none;
}
ul-lang a:last-of-type {
    border-left: 1px solid var(--font-color);
}

.ul-lang li {
    list-style-type: none;
}

.margin-lang {
    margin: 0 -10px 30px 0;
}

.no-display {
    display:none;
}

@media screen and (orientation:portrait), screen and (orientation:landscape) and (max-height:500px) {
    aside {
        display: none;
    }

    .main {
    width: 100%;
    }

    html {
        background-color: var(--background-color);
    }
}

svg path {
    stroke-dasharray: 5000;
    stroke-dashoffset:  0;
    animation: dash 10s ease-in-out alternate infinite;
  }
  
  @keyframes dash {
    from {
      stroke-dashoffset: 5000;
    }
    to {
      stroke-dashoffset: 0;
    }
  }

