@font-face {
    font-family: 'custom';
    src: url('./CaviarDreams.ttf');
}

@font-face {
    font-family: 'bold-custom';
    src: url('./CaviarDreams_Bold.ttf');
}

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

    --col-hot: #ffa500;
    --col-soft : #f7d390;
    --col-txt: #312000;
    --col-title: #f3e5cc;
}

html {
    font-family: 'custom', sans-serif;
    color : var(--col-txt);
    font-size: 16px;
}

.container {
    position : relative;
    width : 853px;
    height : 1970px;

    border : var(--col-hot) solid 4px;
    border-radius : 15px;
    overflow: hidden;

    
}

h1 {
    
    width : 100%;
    background-color: var(--col-hot);
    color : var(--col-title);

    font-family: 'bold-custom', sans-serif;
    font-size: 1.3rem;
    padding: 10px;
}

#context, #planning, #ressources {
   

    width : 100%;
    padding :10px;
}

#planning {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
}

.day {
    width : 18%;
}

h3 {
    background-color: var(--col-hot);
    color : var(--col-title);
    text-align: center;
}

.seance, .half {
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.seance>p, .half>p {
    width: 100%;
    text-align: center;
    margin: 5px 0;
}


.seance {
    background-color: var(--col-soft);
    height :55px;
    margin: 10px 0;
    border-radius: 15px;
}

.half {
    background-color: var(--col-soft);
    height :120px;
    margin: 10px 0;
    border-radius: 15px;
}

.pause {
    height: 25px;
}


li {
    margin-left: 15px;
}

h2 {
    font-size: 1.2rem;
    margin: 10px 0;
    background: linear-gradient(to right, var(--col-hot) 0%, var(--col-hot) 20%, var(--col-soft) 50%, #ffffff00 80%, #ffffff00 100%);
    padding-left: 5px;
}

#ressources>ul>li {
    font-family: 'bold-cutom', sans-serif;
}
 .link-line {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    margin-left : 25px
 }

 .button {
    display: block;
    border : var(--col-hot) solid 1px;
    border-radius: 10px;
    width: 120px;
    text-align: center;
    text-decoration: none;
    font-family: 'bold-cutom', sans-serif;
    padding: 5px 10px;
    background-color: var(--col-hot);
    color:var(--col-title);

    transition: background-color 250ms, color 250ms;
 }

 .button:hover {
    background-color: var(--col-soft);
    color:var(--col-hot);
 }

 #greetings {
    font-size: 1.1rem;
    font-family: 'bold-cutom', sans-serif;
    margin-top: 5px;
 }

