﻿* {
  margin: 0;
  padding: 0;
}
.main-container {
  background-image: url(Images/Background.png);
  background-size: cover;
  width: 100%;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.main-container .top-container {
  width: 80%;
  max-width: 1200px;
  margin: auto;
}
.main-container .top-container h1 {
  font-size: 45px;
  font-weight: bold;
}
.main-container .top-container h2 {
  font-size: 35px;
  font-weight: bold;
  margin-top: 20px;
}
.main-container .top-container p {
  font-size: 20px;
  margin: 20px 0;
  font-weight: bold;
}
.main-container .top-container a {
  display: block;
  width: fit-content;
  padding: 6px 20px 6px 20px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin: 10px 0 0;
  font-size: 15px;
}
.main-container .top-container .buttons {
  display: flex;
  gap: 5px;
}
.main-container .top-container .filled {
  background-color: #b12335;
}
.main-container .top-container .outlined {
  border: 2px solid #b12335;
  color: #b12335;
}
.main-container .top-container img:not(.signout) {
  width: 100px;
}
.main-container .bottom-container {
  width: 80%;
  max-width: 1200px;
  margin: auto;
}
.main-container .bottom-container .card-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.main-container .bottom-container .card:not(:last-child) {
  margin-right: 20px;
}
.main-container .bottom-container .card {
  flex-grow: 1;
  flex-basis: 25%;
  display: flex;
  flex-direction: column;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 350px;
  min-width: 250px;
}
.main-container .bottom-container .card img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
}
.main-container .bottom-container .card h4 {
  margin-top: 5px;
  font-size: 18px;
  line-height: 30px;
}
.main-container .bottom-container .card p {
  margin-top: 5px;
  font-size: 18px;
  line-height: 30px;
}
.main-container .bottom-container .card p a {
  display: block;
  border: 2px solid #b12335;
  max-width: fit-content;
  margin-top: 10px;
  padding: 0 5px;
  border-radius: 10px;
  font-size: 14px;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .card {
    margin-top: 20px;
  }
}
@media screen and (max-width: 600px) {
  .main-container .top-container .card:not(:last-child) {
    margin-right: 0;
  }
}