body {
    background-color: var(--base-color);
    font-family: Inter, serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    width: 100%;
}
.content{
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    line-height: 1.6;
}
h2 a{
    text-decoration: none;
    color: var(--text-color);
    border-bottom: .25rem solid var(--accent-color);
}
.top
{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.backButton{
    display: flex;
    align-items: center;
    margin-top: 2.75rem;
}
body h1{
    text-align: center;
    justify-items: center;
    align-items: center;
    margin-top: 4rem;
}
.mainpage{
    display: flex;
    flex-direction: column;
    place-items: center;
    font-family: Inter, serif;
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--text-color);
}
.welcome {
    display: block;
    margin: 1.75rem auto .25rem;
    padding: 1rem;
    white-space: nowrap;
    overflow: hidden;
    font-size: 1.5em;
    text-align: center;
    width: fit-content;
}
.mainpage p{
    margin-right: auto;
}
.mainpage h1{
    margin: 3rem 0.5rem 0.5rem;
    padding: 0.5rem 0;
}
.date{
    font-size: 1.5em;
}
.backButton{
    background-color: transparent;
    border: none;
    margin-right: auto;
    padding: 1rem 2rem;
}
hr{
    background-color: var(--text-color);
    width: 100%;
    height: 3px;
}
footer{
    height: 4vh;
    margin: 1.5rem 0;
}
.mailto{
    display: block;
    text-decoration: none;
    color: var(--text-color);
    text-align: center;
    font-size: 1.25rem;
}
.informations{
    display: flex;
    width: 90%;
}
.informations *{
    width: 50%;
    margin: 1rem auto;
}
.informations table{
    width: fit-content;
    border-collapse: separate;
    border-spacing: 1rem;
    border: .15rem solid var(--text-color);
    margin-bottom: 2rem;
}
.informations th, .informations td {
    padding: .5rem .5rem;
    text-align: center;
}
.download:hover{
    background-color: var(--secondary-text);
    border-bottom: .5rem solid var(--accent-color);
    color: var(--base-variant)
}
.informations img{
    margin: 2rem 2rem 2rem auto;
    border-radius: 70% 30% 50% 10%;
    border: .25rem solid var(--text-color);
}
.download a{
    text-decoration: none;
    color: var(--text-color);
}
@media (max-device-width: 1200px)
{
    .informations{
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    .informations img{
        margin: .5rem auto 1rem;
    }
}
@media (min-device-width: 601px) and (max-device-width: 800px) {
    .mainpage{
        margin-top: 12vh;
    }
}
@media (max-width: 600px){
    .mainpage{
        margin-top: 12vh;
        display: block;
        width: 100%;
        height: 100%;
        font-size: 1rem;
    }
    .welcome{
        animation-duration: 7.5s;
    }
    body{
        width: 100vw;
    }
    .top
    {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .backButton{
        display: flex;
        align-items: center;
        margin-top: 6.5rem;
    }
    body h1{
        margin-top: 7.5rem;
    }
    .content{
        width: 90%;
        margin-left: 1rem;
        margin-right: 2rem;
    }
    .informations{
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    .informations *{
        margin: .5rem 2rem;
    }
    table{

    }

}