:root {
    --dark: #19191B;
    --grey: #696871;
    --purple: #5454D4;
    --orange: #FF7143;
}

*{
    margin: 0px;
    padding: 0px;
}

body{
    font-family: "DM Sans",sans-serif;
}

.header {
    padding-block: 30px 0;
}

.header__container {
    max-width: 1069px;
    margin-inline: auto;
}

.header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__list {
    display: flex;
    gap: 49px;
}

ul{
list-style: none;
}

.header__list-link{
font-weight: 700;
font-size: 15px;
letter-spacing: -0,47px;
color: var(--grey);
transition: color 0.3s;
}

.header__list-link.active{
    color: var(--dark);
    border-bottom: 2px solid var(--purple);
    padding-bottom: 10px;
}

.header__list-link:hover {
    color: var(--dark);
}

a{
    text-decoration: none;
}

.header__button {
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.53px;
    color: white;
    padding: 19px 59px;
    background: var(--orange);
    border-radius: 10px;
    transition: 0.3s;
}

.header__button:hover{
    opacity: 90%;
}






.contact__list{
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
}

.contact__list-link{
    font-size: 25px;
}

p{
    font-size: 17px;
}

