* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
    background:#3C3E41
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 100px 40px 100px;
  background: #3C3E41
  
}

.photo {
  width: 45%;
}

.photo img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border:3px solid white;
 box-shadow: 3px 3px 3px 5px rgba(156, 150, 187, 0.6);  
  object-fit: cover;
}

.text1 {
  width: 50%;
  line-height: 2;
  color: white;
  
  font-size: 18px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.text1 h1 {
  color: #FFFD71;
 
  font-size: 20px;
  margin-bottom: 20px;
}

.stream {
  display: flex;
  gap: 20px;
  justify-content: center;

  padding: 20px 0;
  background: #3C3E41;
  color:white;
}

.stream a {
  text-decoration: none;
 
}

#sciencebio,
#sciencecom,
#management {
  padding: 10px 20px;
  border-radius: 10px;
  background: #10dfc6; 
  color: #fffde7;
  font-weight: bold;
  border: 2px solid white; 
  transition: none;
}

#sciencebio:hover,
#sciencecom:hover,
#management:hover {
  background: #0c0c0c; 
  color:white;

  cursor: pointer;
}
