.about-me-container {
  margin-top: 300px;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  gap: 20px;
}

.about-me-photo-container {
  background-color: #c9bd9c;
  border-radius: 30px;

  width: 800px;
  height: 800px;
  padding: 30px;

  margin-left: 50px;
  margin-right: 50px;
}

.about-me-photo {
  width: 800px;
  height: 800px;
}

@media (max-width: 1730px) {
  .about-me-photo,
  .about-me-photo-container {
    width: 500px;
    height: 500px;
  }

  .about-me-text {
    max-width: 500px
  }
}

.about-me-text {
  font-size: 25px;
  max-width: 1100px;
  margin-bottom: 20px;
  margin-left: 20px;
}

.channel-container {
  background-color: #c9bd9c;
  border-radius: 30px;
  position: relative;

  width: 200px;
  height: 450px;
  padding: 50px;

  margin-right: 50px;
  margin-left: 50px;
}

.channel-photo {
  height: 200px;
  border-radius: 100px;
}

.channel-container p {
  font-weight: bolder;
  color: #353127;
  font-size: 50px;
  text-align: center;
}


.subscribe {
  border: none;
  color: white;
  background-color: red;
  border-radius: 30px;
  font-weight: bold;
  transition-duration: .3s;
  flex-wrap: wrap;

  padding: 20px;
  font-size: 20px;
  
  margin-left: 40px;
  margin-top: 20px;
}

.subscribe:hover {
  background-color: white;
  color: black;
}
