body {
  background-color: white;
}

p, a, h1, h2, h3, .tutorial{
  color: black;
  font-family: 'Roboto Mono', monospace;
}

input[type="submit"], button, .goBack {
  font-family: 'Roboto Mono', monospace !important;
  font-weight: 500 !important;
}

select {
  font-family: 'Roboto Mono', monospace !important;
  font-weight: 400 !important;
}

h1 {
  font-weight: 700;
}

h2 {
  font-weight: 600;
}

h4 {
  font-weight: 100;
}

h5 {
  font-weight: 500;
}

h3 { /* eigentlich unnötig - h3 und h5 wurden im code verwechselt */
  font-weight: 500;
}

p {
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: your-color;
}

a:focus {
  outline: none;
}

a:active {
  color: black;
}











.container-fluid {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin-bottom: 1rem;
}

.navbar {
  background-color: white;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-link:hover {
  color: rgba(0, 0, 0, 0.7);
}

.offcanvas-body {
  justify-content: flex-end;
}

#footer {
  background-color: white;
}

.form-control {
  font-family: 'Roboto Mono', monospace;
}

/******************** Login *************************************************************************/

#logBtn, #regBtn, #logOutBtn, #updateSet, #updateCard, #addCard, #submitCard, #duplicate, .goBack {
  outline: 1px solid lightgrey;
}

#questionTxt {
  font-size: small;
}


/******************** SetOverview *************************************************************************/

.set-container {
    display: flex;
    flex-direction: column;
}

.set-container .card {
    flex: 2;
}


.form-control {
  resize: none;
}

.card-container {
  outline: 1px solid lightgrey;
}

.setButton {
  margin-right: 1rem;
}

.cardViewText {
  margin: 11vw;
}

#arrowBack {
  width: 20px;
}







.card {
  transition: transform 0.3s;
  margin-left: 5px;
  margin-right: 5px;
}
  
.card:hover {
  transform: scale(1.05);
}

.gridRedirect {
  text-decoration: none;
  color: black;
}

.card:hover::before {
  content: attr(data-content);
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}
 
.carousel-control-next-icon {
   background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}

