style.css 1.51 KB
:root {
  --main-bg-color: #6e87cf;
  --point-color: #44090d;
}

h1 {
  color: #e9dacc;
  font-size: 4.5em;
  font-weight: 900;
  /* text-shadow: 2px 2px #191766;*/
  text-shadow: #44090d 1px 1px, #44090d 0px 0px, #44090d 1px 1px,
    #44090d 2px 2px, #44090d 3px 3px, #44090d 4px 4px, #44090d 5px 5px,
    #44090d 6px 6px, #44090d 7px 7px, #44090d 8px 8px, #44090d 9px 9px,
    #44090d 10px 10px, #44090d 11px 11px, #44090d 12px 12px, #44090d 13px 13px,
    #44090d 14px 14px, #44090d 15px 15px, #44090d 16px 16px, #44090d 17px 17px,
    #44090d 18px 18px, #44090d 19px 19px;
}

h4 {
  font-weight: 300;
}

* {
  font-family: "Noto Sans KR", sans-serif;
}

body {
  background-color: var(--main-bg-color);
  background: no-repeat fixed 50% 50% url("../src/background.jpg");
  color: var(--point-color);
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 10%;
  left: 10%;
  /* background-color: rgb(250, 250, 250, 0.5);
  border-radius: 0.8rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  width: 80%;
  height: 80%;
  color: var(--point-color);
}

main > form {
  display: flex;
  align-items: flex-end;
  font-weight: 500;
}

main > form > div {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

input {
  margin: 10px 0px;
  padding: 5px 10px;
  border: 0;
  border-radius: 0.4em;
}

.btn:hover {
  background-color: var(--point-color);
  color: #fff;
  cursor: pointer;
}

.btn:active {
  position: relative;
  top: 1px;
  left: 1px;
}