

@font-face {
  font-family: 'Prompt-Black';
  src: url('./fonts/Prompt-Black.ttf') format('truetype');
  font-weight: bolder;
  font-style: normal;
}

@font-face {
  font-family: 'Prompt-Bold';
  src: url('./fonts/Prompt-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}


@font-face {
  font-family: 'Prompt-Medium';
  src: url('./fonts/Prompt-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'Prompt-Regular';
  src: url('./fonts/Prompt-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Prompt-Light';
  src: url('./fonts/Prompt-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Prompt-Thin';
  src: url('./fonts/Prompt-Thin.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


*{
  font-family: 'Prompt-Regular', monospace;
}


body{
  background: #212121;
  margin:0;
}

#header{
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 21px;
  margin-left: 24px;
}
#header h1{
  color:rgb(227, 227, 227);
  font-family: Prompt-Bold;
  font-size: 2.5rem;
  margin:0;
}

#header p{
  margin:0;
  margin-top: 5px;
  font-family: Prompt-Light;
  font-size: 1rem;
}

.color-grey{
  color: #BCBCBC;
}
.color-pink{
  color: #FB027A
}

.color-blue{
  color: #5985E4;
}

#content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 21px;
  margin-left: 24px;
}

#content #controll-buttons{
  display: flex;
  flex-direction: column;
}

#content #controll-buttons button{
  background: #5985E4;
  border-radius: 5px;;
  border: none;
  width: 92%;
  height: 53px;
  color: white;
  font-family: Prompt-Bold;
  font-size: 1rem;
  padding: 15px 20px;
  margin-top: 15px;;
  margin-right: 10px;
  cursor: pointer;
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  border:1px solid #5985E4;
}

#controll-buttons button img{
  width: 20px;
}

#content #controll-buttons button.manually{
  background: transparent;
}

.data-block{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 10px;;
}

.data-block-header{
  display: flex;
  flex-direction: row;
  color: white;
  gap: 5px;
  align-items: center;
}

.data-block-header img{
  width: 7px;
  margin-top: 4px;
}

.data-block-header h2{
  font-size: 1rem;
}
.data-block-content{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1px;
}

.data-block-content-input{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #0f0f0f;
  width: 90%;
  padding-left: 15px;
}

.data-block-content-input label{
  color: #949494;
  font-family: Prompt-Light;
  font-size: 1rem;
  margin-top: 8px;
}

.data-block-content-input textarea, input{
  background: transparent;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-family: Prompt-Medium;
  font-size: 0.8125rem;
  resize: auto;
  outline: none;
  min-height: 40px;
  padding-bottom: 10px;
}

.data-block-content-input textarea{
  min-height: 100px;
}

button.generate-button{
  background: #5985E4;
  border-radius: 5px;;
  border: none;
  width: 145px;
  height: 42px;
  color: white;
  font-family: Prompt-Bold;
  font-size: 1rem;
  margin-top: 10px;
  cursor: pointer;
  gap: 10px;
  border:1px solid #5985E4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.generate-button img{
  width: 20px;
}

.generate-button:hover{
  background: #6391f3;
  border: 1px solid #6391f3;
}

p.commits-description{
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
  color: #fff;
  font-size: 0.875rem;
}

p.commits-title{
  display: flex;
  flex-direction: column;
  color: #fff;
  font-family: Prompt-Medium;
  width: 98%;
  font-size: 1rem;
}

.copy-button{
  background: none;
  border: 1px solid #333;
  border-radius: 5px;
  outline: none;
  justify-self: flex-end;
  align-self: flex-end;
  height: 35px;
  padding:0 10px;
  margin:7px;
  margin-top: -15px;
  cursor: pointer;
  color:white;
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 5px;
}

.copy-button:hover{
  background: #212121;
  border-radius: 5px;
}

.output-block{
  display: none;
  cursor: pointer;
}

.output-block .data-block-content-input:hover{
  filter: brightness(1.2);
}

.output-block.active {
  display: block;
}


@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.generate-button[disabled]{
  background: #2550ac;
  border: 1px solid #5985E4;
  cursor: not-allowed;
}
.generate-button[disabled] .generate-button-icon{
  animation: rotate 1.5s linear infinite;
}