/* utility class */

* {
  margin: 0;
  padding:0;
}

.clr {
  clear: both;
}

/* Main Styling */
html,body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7em;
  box-sizing: border-box;
  background:#f7c08a;
}

a {
  color: #333;
  text-decoration: none;
}

h1, h2, h3 {
  padding-bottom: 20px;
}

p {
  margin: 10px 0;
}

/* Utility Classes */
.container {
  margin: auto;
  max-width: 1100px;
  overflow: auto;
  padding: 0 20px;
}

/* Navbar */
#navbar {
  background: #333;
  color: #fff;
  overflow: auto;
}

#navbar a {
  color: #fff;
}

#navbar h1 {
  float: left;
  padding-top: 20px;
}

#navbar ul {
  list-style: none;
  float: right;
}

#navbar ul li {
  float: left;
}

#navbar ul li a {
  display: block;
  padding: 20px;
  text-align: center;
}

#navbar ul li a:hover, 
#navbar ul li a.current {
  background: #444;
  color: #f7c08a;
}


.search-box {
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
  background: #2f3640;
  height: 40px;
  border-radius: 40px;
  padding: 10px;
}


.search-btn {
  color: #e84118;
  float: right;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2f3640;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-txt{
  border: none;
  background: none;
  outline: none;
  float: left;
  padding: 0;
  color: white;
  font-size: 16px;
  transition: 0.4s;
  line-height: 40px;
  width: 240px;
}

#profile {
  float: right;
}



/* search return page */
#display-profile {
  box-sizing: border-box;
}

.return-title{
 padding: 20px;
 text-align: center;
}

.club-card h1{
  padding: 0;
}

.club-card {
  display: flex;
  flex-direction: column;
  background: #555;
  font-size: 16px;
  margin: 20px;
  border-radius: 5px;
}

.club-card .club-header {
  display: flex;
  padding: 5px 10px ;
  color: #fff;
}

.club-card .club-header .club-name {
  width: 50%;
}

.club-card .club-header .club-rating {
  width: 50%;
  text-align: left;
}

.club-card .club-keyword {
  padding: 5px 10px;
  font-size: 16px;
  text-align: left;
  color: #fff;
}

.club-card .club-info {
  font-size: 20px;
  line-height: 30px;
  background: #f4f4f4;
  padding: 10px;
}


/* Footer */
#main-footer {
  position: absolute;
  bottom: 0;
  width: 97.1%;
  text-align: center;
  background: #444;
  color: #fff;
  padding: 20px;
  
}