@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 3.5rem;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-wrapper .left,
.navbar-wrapper .right {
    margin: 0 30px;
}

.navbar-wrapper .left a .logo {
    height: 60px;
}

.navbar-wrapper .right ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-wrapper .right ul li {
    display: inline-block;
    margin: 0 10px;
}

.navbar-wrapper .right ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.wrapper {
    width: 100%;
    height: 100%;
    padding-top: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wrapper .heading-wrapper {
    padding-top: 3.5rem;
    text-align: center;
}

.wrapper .heading-wrapper .heading {
    font-size: 2rem;
    color: #3c3c3a;
    font-weight: 300;
    padding-bottom: 20px;
}

.wrapper .heading-wrapper .subtext {
    font-weight: 300;
    color: #3c3c3a;
    font-size: 1.5rem;
}

.text-area {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 5rem;
}

.text-area .input-text,
.text-area .result-text {
    display: flex;
    justify-content: center;
}

.text-area .input-text textarea {
    width: 75%;
    height: 300px;
    resize: none;
    padding: 5px;
    color: #3c3c3a;
    font-size: 1.5rem;
}

.text-area .input-text textarea::placeholder {
    color: #3c3c3a;
    font-size: 1.5rem;
}

.text-area .button {
    flex: 1;
    display: flex;
    align-items: center;
    height: 300px;
    align-self: center;
    padding: 15px 0;
}

.text-area .button button {
    box-shadow: inset 0px 1px 0px 0px #ffffff;
    background: linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #dcdcdc;
    display: inline-block;
    cursor: pointer;
    color: #666666;
    font-family: Arial;
    font-size: 15px;
    font-weight: bold;
    padding: 10px 28px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #ffffff;
}

.text-area .button button:hover {
    background: linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
    background-color: #f6f6f6;
}

.text-area .button button:active {
    position: relative;
    top: 1px;
}

.text-area .result-text {
    padding-bottom: 20px;
}

.text-area .result-text .result {
    padding: 5px;
    color: #3c3c3a;
    font-size: 1.5rem;
    width: 75%;
    border: 1px solid #eee;
    min-height: 300px;
}

.about-heading {
    padding-top: 3.5rem;
    font-size: 40px;
}

.about {
    width: 75%;
    padding-top: 20px;
    font-size: 20px;
}

.creators {
    width: 100%;
    padding-top: 3.5rem;
}

.creators-wrapper {
    display: flex;
    justify-content: space-around;
}

.creators-wrapper .creator .creator-name {
    font-size: 20px;
    font-weight: bold;
    color: #3c3c3a;
}

.social-wrapper ul {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    list-style: none;
}

.social-wrapper ul li a {
    text-decoration: none;
    color: #3c3c3a;
    font-size: 30px;
}

.social-wrapper ul li a:hover {
    color: rgb(14, 14, 95)
}