* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Satoshi", sans-serif;
  scroll-behavior: smooth;
}

html,
body,
section,
footer {
  overflow-x: hidden;
}

body {
  background: rgb(255, 248, 240);
  background: -moz-linear-gradient(
    338deg,
    rgba(255, 248, 240, 1) 0%,
    rgba(200, 245, 255, 1) 47%,
    rgba(255, 200, 170, 1) 100%
  );
  background: -webkit-linear-gradient(
    338deg,
    rgba(255, 248, 240, 1) 0%,
    rgba(200, 245, 255, 1) 47%,
    rgba(255, 200, 170, 1) 100%
  );
  background: linear-gradient(
    338deg,
    rgba(255, 248, 240, 1) 0%,
    rgba(200, 245, 255, 1) 47%,
    rgba(255, 200, 170, 1) 100%
  );
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4vw;
}

.contact-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
}

main h1 {
  font-size: 2.5rem;
  text-align: center;       
  width: 100%;
  margin-top: 2rem;
}
nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo,
.homeButton {
  margin: 2rem;
}
.homeButton {
  border: 1px solid black;
  padding: 0.6rem 1.1rem;
  border-radius: 21px;
  color: black;
  text-decoration: none;
  transition: 0.2s ease;
}
.homeButton:hover {
  background: black;
  color: white;
}


#subtitle {
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
  width: 100%;
}
span {
  display: flex;
}
.bold {
  font-weight: 600;
  margin-right: 0.3rem;
}
.contact-text p,
.contact-text a {
  font-size: 1rem;
}
a {
  color: black;
}
iframe {
  margin-top: 2rem;
  border: 1px solid black;
  border-radius: 21px;
  margin-bottom: 1rem;
}
.cols {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: 500px;
  margin-block: 1rem;
}
.textus {
  padding: 0.9rem 1.2rem;
  margin: 2rem;
  background: #fff7e3;
  border: 1px solid black;
  border-radius: 2rem;
  text-decoration: none;
  transition: 0.2s ease;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.textus:hover {
  opacity: 0.7;
}
@media only screen and (min-width: 2000px) {
  .contact-text p,
  .contact-text a {
    font-size: 1.2rem;
  }
  .cols {
    width: 600px;
  }
  iframe {
    width: 600px;
    height: 350px;
  }
}
@media only screen and (max-width: 550px) {
	
  .contact-text {
	align-items: center;
  }
  .cols {
    flex-direction: column;
	width: auto;
  }
  .col {
    margin-bottom: 1rem;
  }
  iframe {
    width: 380px;
  }
  .logo img {
    width: 150px;
  }
	
  .personal {
	max-width: 215px;
  }
	
  .contact-info {
	display: flex;
	flex-direction: column;
  }
	
  .contact-address {
	max-width: 200px;
  }
	
  .homeButton {
    transform: scale(0.9);
	margin-left: auto;
  }
	
}
@media only screen and (max-width: 400px) {
  main h1 {
    font-size: 2.5rem;
  }
  iframe {
    width: 300px;
  }
}
