/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
      margin: 0;
      padding: 0;
      background-image: url('images/penguins.jpg');
      font-family: Arial, sans-serif;
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      flex-direction: column;
    }

h1 {
    color: white;
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

h2 {
    color: white;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  border: 2px solid white;
  padding: 12px 24px;
  border-radius: 10px;
  transition: 0.3s;
  }

    a:hover {
      background-color: white;
      color: #1e5eff;
    }

.container {
  width: 1200px;              
  margin: 10px;

  background-color: rgba(0, 0, 0, 0.3);

  padding: 10px;
  /*padding-top: 0px;*/
  /*padding-bottom: 25px;*/
  /*padding-left: 20px;*/
  /*padding-right: 20px;*/
  
  border: 2px solid black;     
  border-radius: 10px;       
  
  box-shadow: 0 0 20px black;   
  min-height: 500px;
}
    
.card {
  border: 1px solid black;
  padding: 10px;
  width: 200px;
  font-size: 24px;
  background-color: rgba(0, 0, 0, 0.3);
  max-width: 100%;
}

.card img {
  width: 100%;
}
    
p  {
  font-size: 24px;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: stretch;
}
