* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: black;
}

.wrapper {
  border: 5px solid silver;
  display: flex;
  margin: 0 140px;
  background-image: url(images/icons/my_cool_bg_004.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-attachment: fixed;
}

.in-line {
  margin: 20px;
}

.in-line img {
  align-items: center;
  max-width: 25%;
}

/*Fonts*/

h1 {
  font-size: 35px;
  color: wheat;
  text-align: center;
}

h2 {
  font-size: 20px;
  color: wheat;
  text-align: center;
}

h3 {
  font-size: 20px;
  color: wheat;
  text-align: center;
}

h4 {
  font-size: clamp(3px, 3x + 2vh, 18px);
  color: whitesmoke;
  text-align: center;
  display: flex;
}

p {
  font-size: 20px;
  color: wheat;
  text-align: center;
}

/*SMART PHONES*/
@media (min-width: 300px) and (max-width: 767px) {
  .wrapper {
    max-width: 100%;
    overflow: hidden;
    margin: 0;
    border: none;
  }
  .in-line img {
    align-items: center;
    max-width: 100%;
  }
}

/*IPADS*/
@media (min-width: 768px) and (max-width: 1023px) {
  .wrapper {
    max-width: 100%;
    overflow: hidden;
    margin: 0;
    border: none;
  }
  .in-line img {
    max-width: 100%;
    align-items: center;
  }
}
