@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Petit+Formal+Script&display=swap');

*,
a:before,
a:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    padding: 0;
    margin: 0;
}

.managementBackground {
  padding-top: 56px;
  background-color: #FAFAFA;
  background-image: url("../../images/clubhouse_web_1200.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

.backColor {
  background-color: #a8e9ee;
}

.logo {
  margin: 0 10px 0 30px;
  width: 250px;
  height: 50px;
}

.logo img {
  width: 210px;
}

.link {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.rightIcons a {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin: 0 10px;
}

.rightIcons a.logout {
  font-size: 1.2rem;
  font-weight: 400;
}

.container_news {
  width: 100%;
}

.banner_news {
  width: 100%;
  margin-top: -50px;
  font-family: 'Poppins', sans-serif;
  background-color: steelblue;
  border-radius: .25rem;
  color: whitesmoke;
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
}

.nothing_found {
  margin: auto;
  padding: 40px 0;
  text-align: center;
  height: auto;
  width: 98%;
  background-color: rgba(230,230,230,.75);
  margin-bottom: 2rem;
}

.card {
  background-color: rgba(230,230,230,.93);
  border: 2px solid blue;
}

.flex_row{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; 
  justify-content: center;
}

.flex_item {
  width: 32%;
  margin-bottom: 10px;
  margin-left: 10px;
}

a {
  text-decoration: none;
  font-size: 1rem;
}


/* *****     FOOTER     *****      */
.copyright{
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #252527;
  height: 70px;
  width: 100%;
}

.copyText {
  line-height: 1.1rem;
  padding-top: .5rem;
  font-size: 1rem;
  color: white;
}

.copySubText {
  line-height: 1.1rem;
  padding-top: 0;
  color: #b5bcc5;
  font-size: .8rem;
}

/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 980px) {
  .flex_item {
    flex: 45%;
  }
}

/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 800px) {
  .flex_item {
    flex: 100%;
  }
}