.link{
    text-decoration: none;
    color: black;
}

.link-white{
    text-decoration: none;
    color: white;
}

/* body{
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background-color: #E0E0E0;
} */

header{
    width: 100%;
    padding: 20px 40px;
    display: flex;
    flex-direction: row;
    gap: 5%;
    align-items: stretch;
}

header .block-buttons{
    display: flex;
    flex-direction: row;
    gap: 50px;
}

header .button{
    font-size: 40px;
    border-radius: 25px;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 10px;
    font-weight: 800;
    
}

header .button p{
    margin: 0;
    padding: 0;
}

header .contact{
    display: flex;
    flex-direction: row;
    gap: 20px;
}

header .adress {
    font-size: 40px;
    font-weight: 800;
}

header .phone{
    text-decoration: underline;
    font-size: 40px;
    font-weight: 800;
}

@media (max-width: 1600px) {
    /* header{
        padding-bottom: 10%;
    } */

    header .block-buttons{
        gap: 30px;
    }

    header .button{
        font-size: 25px;
        border-radius: 15px;
        padding: 0px 10px;
    }

    header .contact{
        gap: 10px;
    }
    
    header .adress {
        font-size: 25px;
    }
    
    header .phone{
        font-size: 25px;
    }
}