@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@500&display=swap');
body{
    display: block;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.header{
    width: 100vw;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.header__container{
    width: 1200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media only screen and (max-width: 1200px){
    .header__container{
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;        
    }
}
@media only screen and (max-width: 400px){
    .header__container {
        height: 80px;
    }
}
.header__logo img{
    width: auto;
    height: 34px;
}
@media only screen and (max-width: 400px){
    .header__logo img{
        height: 34px;
    }
}
@media only screen and (max-width: 350px){
    .header__logo img{
        height: 28px;
    }
}
.header__link{
    font-family: 'Epilogue', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    text-decoration: none;
   
    color: #584EC5;
}
@media only screen and (max-width: 400px){
    .header__link{
        font-size: 12px;
    }
}
.header__link > img{
    width: 8px;
    height: 8px;
    margin-left: 8px;
}
