@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Inter Tight", sans-serif;
  font-weight: normal;
  font-style: normal;
}

.wrapper {
    display: flex;
    flex-direction: row;
    gap: clamp(20px, 5vw, 64px);
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
    height: 100vh;
}

h1 {
    font-size: clamp(36px, 5vw, 64px);
    margin-block: 0 20px;
}

.image img {
    width: 100%;
    border-radius: 20px;
}

.text>p {
    font-size: 20px;
}

.contacts p:first-child {
    font-weight: bold;
}

@media screen and (min-width: 601px) {
    
    .image img {
        height: 70vh;
        object-fit: cover;
    }
    
    .text>p {
        width: 70%;
    }
    
    .contacts {
        width: 385px;
    }
}

@media screen and (max-width: 600px) {
    .wrapper {
        padding-block: 40px;
        flex-direction: column;
        justify-content: flex-start;
    }
}