html,
body {
    margin: 0;
    padding: 0;
}


@font-face {
    font-family: 'Poppins';
    src: url('./img/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Poppins';
    src: url('./img/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
}

body {
    background-image: url(./img/background-dt.jpg);
    height: 100vh;
    min-width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    margin: 0;
}

p {
    font-size: 16px;
    margin-bottom: 16px;
}

h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

a{
    all: unset;
}
a:hover{
    cursor: pointer;
}


body>div {
    display: flex;
    gap: 50px;
    height: 25%;
    justify-content: center;
    align-items: center;
}

body>div>img {
    height: 100%;
}


body>div>div {
    width: 40%;
}

body>div>div>.contact {
    display: flex;
    gap: 30px;
}

body>div>div>.contact div {
    display: flex;
    height: min-content;
    align-items: center;
    gap: 10px;
}



body>div>div img {
    width: 22px;
    height: auto;
    border: 3px solid #fff;
    padding: 10px;
    border-radius: 100%;
}

@media screen and (max-width: 1451px) {
body>div>div {
    width: 50%;
}
}

@media screen and (max-width: 1150px) {
body{
        background-position: center;
        background-image: url(./img/background-m.jpg);
}

    body>div {
    flex-direction: column;
}
    
body>div>div {
    width: 70%;
}
}

@media screen and (max-width: 860px) {
    
body>div>div {
    width: 80%;
}
body>div>img {
    height: 80%;
}
}



@media screen and (max-width: 754px) {
body>div>div>.contact {
    flex-direction: column;
    gap: 16px;
}


body>div>div {
    width: 85%;
}

body>div>div>.contact {
    flex-direction: column;
    gap: 16px;
}
}

@media screen and (max-width: 700px) {

h1 {
    font-size: 32px;
}



}

@media screen and (max-width: 550px) {

h1 {
    font-size: 28px;
}

body>div>img {
    height: 85%;
}

}

@media screen and (max-width: 480px) {

h1 {
    font-size: 24px;
}

body>div>img {
    height: 85%;
}

}

@media screen and (max-width: 420px) {

h1 {
    font-size: 22px;
}
p{
    font-size: 15px;
}
h2{
    font-size: 17px;
}

body>div>img {
    height: 80%;
}

}

@media screen and (max-width: 380px) {

h1 {
    font-size: 20px;
}

body>div>img {
    height: 70%;
}

}