@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');
body {
    margin: 0;
    font-family: "Source Sans Pro", sans-serif;
    outline: none;
    user-select: none;
    overflow-x: hidden;
}

header {
    position: fixed;
    width: 100vw;
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 250ms ease-in-out;
}

main {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 50%, rgba(31, 32, 32, 0.1) 100%), url("assets/bg.jpg");
    background-size: cover;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    color: white;
}

h1 {
    font-size: 4rem;
    margin: 14vw 0 0 10vw;
}

h2 {
    margin: 0.75vw 0 1vw 10vw;
}

#donation {
    width: 400px;
    height: 100px;
    font-weight: bold;
    font-size: 2.25rem;
    background-color: green;
    border: solid white 1px;
    padding: 1vw;
    margin-left: 10vw;
    letter-spacing: 0.25vw;
    float: left;
}

h4 {
    color: white;
    margin: 0 2vw 0;
    font-weight: lighter;
}

.logo {
    height: 6vh;
    margin: 0 0 0 2vw;
    filter: invert(1);
    cursor: pointer;
}

a {
    margin: 0;
}

ul {
    font-size: 1.2em;
    color: white;
    list-style: none;
    margin: 0 2vw 0 0;
    cursor: default;
}

ul li {
    margin: 0 1vw 0;
    cursor: pointer;
    display: inline;
    transition: color 250ms ease-in-out;
}

ul li:hover {
    color: rgb(0, 91, 187);
    transition: color 250ms ease-in-out;
}

aside {
    display: inline-block;
    background-color: white;
    width: 100vw;
    /* height: 70vh; */
}

footer {
    background-color: gray;
    width: 100vw;
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#flag {
    border: 0.1vw solid white;
    background-position: initial;
    background-repeat: initial;
}

#maintext,
#contacttext {
    text-align: justify;
    padding: 4vw 15vw 4vw;
    letter-spacing: 0.03vw;
    font-size: 1vw;
    line-height: 2.5vw;
}

#affiche,
#program {
    margin: 1vw 0 0;
    float: left;
    width: 50vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#affiche img {
    width: 25vw;
    margin: 2vw 0 2vw;
}

#programs img {
    width: 25vw;
    margin: 2vw 0 1vw;
}

#programs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
}

#programs div {
    text-align: center;
}

/*center*/
.badroads {
    margin-left: auto;
    margin-right: auto;
}

/*for phones under 600px*/
@media only screen and (max-width: 600px) {
    .badroads {
      width: 100%;
    }
  }