*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-family: 'Clear Sans Medium';
}
:root{
    --mainColor: #0069ff;
    --thirdColor: #002c9b;
    --secondColor: #e3e8f4;
    --borderMainRadius: 20px;
    --textMin: 20px;
    --textTitle: 30px;
    --textMainTitle: 50px;
}
body{
    background-color: var(--secondColor);
}
section{
    width: 100%;
}
.container{
    width: 92%;
    margin: auto;
    display: flex;
    margin-bottom: 50px;
}
.link{
    text-decoration: none;
    color: white;
}
.mainTitle{
    color: var(--mainColor);
    font-size: var(--textMainTitle);
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    font-family: 'TunnelFront'!important;
}
.active{
    display: block;
}