@import "./reset.css";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');


body {
    color: #202020;
  font-family: "Montserrat", sans-serif;

}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {

    padding: 0 46px;
    margin: 0 auto;

    background-image: url("../img/fon.png")  ;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}

/* Header */
.header {
    padding-top: 71px;
    background-color: #202020;
    
}

.logo {

   font-weight: 600;
   font-size: 95; 
   color: #ECECEC;
   line-height: 1.26%;
}


.header-row {
    display: flex; justify-content: space-between;
    column-gap: 30px;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    max-width: 501px;
}

.header-img {
    float: right;
    margin-left: 46px; 
    margin-bottom: 30px; 
    /* display: flex;
    align-items: center;
    justify-content: left;
    margin-right: auto; */
}


.header-img img {
    max-width: 100%;
    height: auto;
}

.buttons .connect img {
    max-width: 100%;
    height: auto;
    display: block;
}

.buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* margin-left: 46px; */
    margin-bottom: 50px;

}

.Button1 {
    
    width: clamp(220px, 60vw, 347px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: clamp(14px, 2.2vw, 20px);
    background-color: #0098E8;
    border-radius: 30px;
    color: #F1FAFF;
    line-height: 2;
}

.Button2 {
    width: clamp(220px, 60vw, 347px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #F1FAFF;
    border-radius: 30px;
    font-size: clamp(14px, 2.2vw, 20px);
    color: #0098E8;
    line-height: 2;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.btn img {
    display: block;
    height: 1.2em;
    width: 1.2em;
}

.header-heading{
    color: #ECECEC;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: clamp(36px, 8vw, 80px);
}

.header-content p {
    color: #ECECEC;
    margin-top: 0;
    margin-bottom: 40px;    
    font-weight: 600;
    font-size: clamp(16px, 3.2vw, 30px);


}