@import url('https://fonts.googleapis.com/css2?family=Tektur&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #1c1c1e;
    color: #ffffff;
    height: auto;
    min-height: 500vh;
}

h1 {
    color: #5fa9ee;
    font-size: 48px;
    text-align: center;
    font-family: 'Tektur', cursive;
    margin-bottom: 20px;
}

h2 {
    color: #5fa9ee;
    font-size: 20px;
    text-align: center;
    font-family: 'Tektur', cursive;
}

h3 {
    color: #5fa9ee;
    font-size: 18px;
    font-family: 'Pacifico', cursive;
    text-align: center;
}

.flex-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.card{
	background:none;
}

.card-container,
.tweet-container {
    flex: 1;
    background-color: transparent;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px; 
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    background: none; 
    border: none;
    opacity: 1;
}

.container {
  display: flex;
  justify-content: center; 
  align-items: center;   
  height: 100%;           
}

button {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    border: none;
    background-color: #5ab4f8;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background-color: #4699d9;
}


@media (max-width: 768px) {
  body {
    padding: 15px;
  }

  h1 {
    font-size: 36px; 
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 16px;
  }

  .flex-container {
    flex-direction: column;
    align-items: center; 
    gap: 15px; 
  }

  .card-container, .tweet-container {
    max-width: 95%; 
    margin: 0 auto; 
  }

  .card img {
    width: 100%; 
    height: auto;
  }

  button {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .navbar-brand img {
    height: 40px; 
    width: auto;
  }

  footer {
    font-size: 14px; 
    text-align: center;
  }

  .grid-container {
    grid-template-columns: 1fr; 
    gap: 20px; 
  }
}

@media (max-width: 480px) {
  body {
    padding: 10px;
  }

  h1 {
    font-size: 32px; 
  }

  h2 {
    font-size: 16px;
  }

  h3 {
    font-size: 14px;
  }

  .flex-container {
    flex-direction: column; 
    align-items: center; 
    gap: 10px; 
  }

  .card-container, .tweet-container {
    max-width: 100%; 
    margin: 0; 
  }

  .card img {
    width: 100%; 
    height: auto;
  }

  button {
    font-size: 0.9rem; 
    padding: 8px 15px;
  }

  footer {
    font-size: 12px; 
    text-align: center;
  }
}
