@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Oswald&display=swap');

body,
nav li a,
footer p {
    font-family: 'Oswald', sans-serif;
}

.orange {
    color:#fda600;
}

.purple {
    color: #34334f;
}

.white {
    color: white;
}

.gray_background {
    background-color: #d1c5c8;
}

#welcome_box h3 {
    text-decoration: underline solid 3px #fda600;
    /* width: 10%; */
    text-align: end;
}

nav,
footer {
    background-color: #34334f;
}

.navbar .active_nav,
a.nav-link:hover,
a.nav-link:focus {
    color: #fda600;
}

/* .navbar-toggler:focus {
    box-shadow:  0 0 0 0.25rem;
} */

a.nav-link {
    color: white;
    /* font-weight: 600; */
    font-size: 1.2rem;
}

.navbar .dropdown-menu {
    background-color: #fda600;
}

.navbar .dropdown-item {
    color: white;
    font-size: 1.1rem;
}

.navbar .dropdown-item:hover {
    background-color: #34334f;
}

.footer ul li {
    list-style-type: none;
}

p,
input,
textarea {
    font-family: 'Open Sans', sans-serif;
}

.notice {
    border: 1px solid #dc3545 !important;
  }

.flip-button {
    background-color: #34334f;
    color: white;
    border-radius: 0;
}

.static-button {
    background-color: #fda600;
    color: white;
    border-radius: 0;
    font-size: 1.2em;
}

i {
    font-size: 2em;
    /* border-radius: 50%; */
    /* background-color: #fda600; */
    /* color: white; */
}

#name1,
#name2 {
  /* display: none; */
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

/* CARD FLIP */

.post_wrap {
    height: 300px;
}

.post {
    /* position: relative; do i need it */
    width: 100%;
    height: 100%;
    /* overflow: visible !important; do i need it*/
    transition: transform 1s;
    /* -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d; */
    transform-style: preserve-3d;
    -moz-backface-visibility: hidden;
    color: #34334f;
}


.post_front {
    display: flex;
    /* align-items: center; */
    border: 2px solid #f0f0f0;
}

.post_front p {
    font-size: .8rem;
}

.container .post_front, .container .post_back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

.post_back {
    color: white;
    transform: rotateY(180deg);
    background-color: #fda600;
    display: flex;
    flex-direction: column;
}

.post_wrap:hover .post {
    transform: rotateY(180deg);
}

  /* END CARD FLIP */

@media only screen and (min-width: 992px) {
    .navbar {
      flex-direction: column;
    }
  }