#textWindow4 {
   text-align: justify;
}

.tlinks {
   width: 60%;
   margin: 0 auto;
   padding: 15px;
   display: flex;
   justify-content: space-evenly;
}

.warning {
   background-color: rgba(165, 42, 42, 0.85);
   color: rgb(255, 255, 255);
   padding: 20px 40px;
   margin: 0 auto;
   width: 90%;
   border-radius: 5px;
   letter-spacing: 1.1px;
}

article {
   display: flex;
   flex-direction: column;
   justify-content: center;
}

.tforms {
   width: 40%;
   margin: 0 auto;
   display: flex;
   justify-content: center;
}

.tforms div {
   width: 300px;
   height: 50px;
   margin: 5px auto;
   text-align: center;
   line-height: 50px;
   background-color: #64b07e;
   border: 2px solid black;
}

.tforms div:nth-of-type(2) {
   transform: rotate(10deg);
}

.tforms div:nth-of-type(3) {
   transform: scale(0.75);
}

h4 {
   background-color: #dedbd2;
   width: 90%;
   padding: 5px;
   text-align: center;
   border: 1px solid black;
   border-radius: 15px;
}

button {
   margin: 20px auto 40px;
   padding: 10px 20px;
   color: white;
   font-weight: bold;
   background-color: #689996;
   border: 1px solid black;
   border-radius: 15px;
   box-shadow: 2px 2px 6px #888888;
}

button:hover {
   color: black;
   background-color: #5eeee4;
   box-shadow: 2px 2px 6px black inset;
   transform: translate(6px, 6px);
}