@charset "utf-8";
/* CSS Document */
/*body {
  padding-top: 0px;
  padding-bottom: 40px;
  background-color: #eee;
  background-image: url("../images/AAM-US-scaled.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 100vh; 
  
}*/
body {
    background-image: url('../images/AAM-US-scaled.webp');
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
}

caption {
	caption-side: top;
	font-size: 1.25em;
	font-weight: bold; 
}



.form-signin {
  max-width: 400px;
  padding: 15px;
  margin: 0 auto;
}
.form-signin .form-signin-heading,
.form-signin .checkbox {
  margin-bottom: 10px;
}
.form-signin .checkbox {
  font-weight: normal;
}
.form-signin .form-control {
  position: relative;
  height: auto;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  font-size: 16px;
}
.form-signin .form-control:focus {
  z-index: 2;
}
.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.logo {
	width: 100%;
	text-align: center;
	display: block;
	padding: 10px;
	margin: 0 auto;
	max-height: 210px;
	background: rgba(0,0,0,0.3);
}
.about_us {
	display: block;
	margin: 0 auto;
	padding: 25px;
	width: 85%;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	font-size: 1.0em;
	text-indent: 10px;
	background: linear-gradient(tan,green);
	border-radius: 12px;

}
.centerblock {
	display: block;
	margin: 0 auto;
	width: 50%;
}

.bubble_container {
  position: relative;
}

.info_bubble {
  display: inline-block;
  text-align: center;
  padding: 25px;
  width: auto;
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
  font-size: 1.0em;
  text-indent: 10px;
  background: linear-gradient(tan, green);
  border-radius: 12px;
  
  /* Centering properties */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  margin-top: 100px;
}

.grid_container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	grid-gap: 20px;
	width: 75%;
	margin: 0 auto;
}
.grid_child_left {
}
.grid_child_right {
}
.profile_pic {
	max-height: 300px;
	border-radius: 12px;
	box-shadow: 10px 10px 5px grey;
}
.calendar_frame {
	height: 40em;
	width: 40em;
}
.text-container {
    background-color: rgba(255,255,255,0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	text-align: center;
}
.text-container-sub {
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
  font-size: 1.0em;
  text-indent: 10px;
  background: linear-gradient(#675947,#b7b1a9);
  border-radius: 12px;
  text-align: center;
}
.profiles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* Adjust as needed for spacing */
}

.profile {
    text-align: center;
    margin: 10px;
	background: rgba(255,255,255,0.5);
}

.profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: contain;
}

.kudos-button {
    
    cursor: pointer;
}

.thumbs-up-img {
	width: 1vw;
	height: auto;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-o-border-radius: 0;
	border-radius: 0;
	border: 0;
}

.dept-group {
	background: rgba(0,0,0,0.5);
	text-align: center;
    color: whitesmoke;
}

/* Media queries for responsive design */
@media screen and (max-width: 768px) {
    .profiles-container {
        justify-content: center;
    }

    /* Adjustments for smaller screens */
    .profile {
        /* Add styles for smaller screens */
    }
}

