*::selection {
  background-color: #123456;
  color: white;
}

h1 {
  color: #fff4e6;
  display: inline-block;
}

.login-heading {
  font-size: 60px;
  font-family: "Cormorant Garamond", serif;
  text-align: center;
}

body {
  background-color: #be9b7b;
}

.wrapper {
  /*background-color: green; */
  width: 40%;
  max-width: 100%;
  margin: 0 auto;
}

.citat-box {
  border-color: grey;
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.28);
  border-radius: 5px;
  background-color: #fff4e6;
  margin-top: 20px;

  background-image: url("quotes.svg");
  background-repeat: no-repeat;
  background-size: 82px;
  background-position: right;
  background-position-y: -16px;
}

.citat {
  font-size: 1.4em;
  margin-left: 10px;
  padding-top: 10px;
  color: #251e3e;
  font-family: "Tenor Sans", sans-serif;
}

.link {
  display: block;
  opacity: 0.2;
  color: #251e3e;
  margin-right: 5px;
  text-decoration: none;
}

.link:hover{
  text-decoration: underline;
}

.person {
  /*background-color: red; */
  text-align: right;
  margin-right: 10px;
  padding-bottom: 10px;
  padding-top: 5px;
  font-size: 1.2em;
  font-family: "Cormorant Garamond", serif;
}

.header {
  display: flex;
  justify-content: space-between;
  background-color: #3c2f2f;
  font-family: "Cormorant Garamond", serif;
}

.header-text {
  padding-left: 1rem;
}

input {
  width: 100%;
  padding: 10px 10px;
  border-radius: 5px;
  border: 1px solid rgba(128, 128, 128, 0.74);
  font-size: 17px;
  margin-top: 5px;
  background-color: #f0f0f0;
}

input[type="text"] {
  box-shadow: 0px 0px 4px 0.5px grey inset;
  border: 1px solid rgba(60, 47, 47, 0.76);
}

input[type="password"] {
  box-shadow: 0px 0px 4px 0.5px grey inset;
  border: 1px solid rgba(60, 47, 47, 0.76);
}

label {
  display: block;
  font-family: "Cormorant Garamond", serif;
  padding-top: 10px;
  font-size: 1.5em;
}

.container {
  display: flex;
  justify-content: flex-end;
}

.button {
  padding: 16px 32px;
  text-decoration: none;
  margin-top: 13px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1.2em;
  width: 150px;
  font-family: "Cormorant Garamond", serif;
}

.btn-submit {
  background-color: #be9b7b;
  border: 2px solid #3c2f2f;
  color: #3c2f2f;
  transition: background-color 0.2s, color 0.2s;
}

.btn-submit:hover {
  background-color: #3c2f2f;
  color: #fff4e6;
}

.btn-addQuote {
  padding: 5px;
  margin-top: auto 0;
  margin-right: 20px;
  vertical-align: middle;
  background-color: #854442;
  border: 2px solid #854442;
  width: 150px;
  height: 50px;
  color: #fff4e6;
}

.btn-addQuote:active {
  background-color: #6f3735;
}

@media screen and (max-width: 600px) {
  .wrapper {
    width: 90%;
  }
  .button {
    width: 100%;
  }

  .header {
    display: block;
    padding-bottom: 20px;
    text-align: center;
  }

  .btn-addQuote {
    width: 90%;
    margin: 0 auto;
    display: block;
  }
}

#login{
    display: none;
}

#form{
    display: none;
}

#quotes{
    padding-bottom: 30px;
}
