/* style by element */

a {
  justify-content: center;
}

aside {
  padding: 3rem;
  display: flex;
  justify-content: center;
  margin-left: 20px;
}

body {
  height: 100vh;
  background-color: rgb(175, 172, 172);
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

footer {
  background-color: #334a68;
  position: fixed;
  bottom: 0%;
  text-align: center;
  width: 100%;
}

h5 {
  font-size: 20px;
}

header {
  background-color: #334a68;
  font-size: 40px;
  color: white;
  margin: 0;
  padding: 2rem;
  width: 100%;
  text-align: center;
  position: fixed;
  top: 0%;
}

input {
  background-color: white;
  border-radius: 20px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  padding: 1rem;
}

img {
  border-radius: 8px;
  width: 40px;
}

input:focus {
  outline: none;
  background-color: aqua;
}

input:hover {
  background-color: aqua;
  transition: ease-in-out 0.5s;
}

li {
  display: inline;
}

ul {
  display: flex;
  flex-wrap: wrap;
}

/* specific classes */

.card {
  padding: 1rem;
  border-radius: 8px;
}

.cardColor {
  background-color: aqua;
}

.card:hover {
  box-shadow: 0px 0px 10px rgb(231, 231, 231);
  transition: 0.4s;
}

.col_white_amrc {
  color: #fff;
  text-align: center;
}

.cursor {
  cursor: pointer;
}

.displayGrid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.fbd {
  display: flex;
}

.font-size {
  font-size: 20px;
  justify-content: center;
}

.form-div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gif-bkg {
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
}

.h-100 {
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.js-text {
  color: white;
  font-size: 30px;
  border-radius: 8px;
  background-color: #334a6888;
  padding: 1rem;
}

.pbox {
  padding: 1rem;
  margin: auto;
}

.sBtn {
  background-color: white;
  border-radius: 5px;
  color: black;
  width: 60px;
  height: 30px;
  font-size: medium;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.sBtn:hover {
  background-color: black;
  color: white;
  transition: ease-in-out 0.5s;
}

.tdu {
  color: blue;
  text-decoration: underline;
}

/* media queries */
@media screen and (max-width: 600px) {
  .miw-100\@sml {
    min-width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .miw-50\@lrg {
    min-width: 50%;
  }
}

/* If the screen size is 600px wide or less, set the font-size of a tag to 30px */
@media screen and (max-width: 600px) {
  a {
    font-size: 6px;
  }
  header {
    font-size: 20px;
  }
  .fs-12\@sm {
    font-size: 12px;
  }
  .fs-15\@sm {
    font-size: 15px;
  }
}
