/* BASIC STYLES  */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-top: 30px;
    font-family: sans-serif;
    background-color: #f9dff0;
}

.container {
    width: 1440px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    cursor: pointer;
    transition: .2s ease-out;
}

a:hover {
    text-decoration: underline;
    scale: 1.2;
}

button {
    transition: .2s ease-out;
    cursor: pointer;
}

input {
    border: none;
    transition: .2s ease-out;
}

input:focus,
textarea:focus {
    scale: 1.2;
}

textarea {
    border: none;
    transition: .2s ease-out;
}

button:hover {
    scale: 1.2;
}

h1 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.4vw;
}

/* CREATE ARTICLE PAGE  */

.create_article form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30%;
    align-items: center;
    margin: 0 auto;
}

.create_article label {
    font-size: 1.1vw;
    margin-bottom: 10px;
}

.create_article input,
textarea {
    margin-bottom: 30px;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 20px;
    padding-left: 20px;
    border: 1px solid #aeaeae;
}

.create_article button {
    margin-bottom: 30px;
    border-radius: 20px;
    width: 100%;
    background-color: #ff6600;
    border: none;
    color: #fff;
    font-size: 1vw;
    height: 30px;
}

.create_article h1 {
    text-align: center;
}

.create_article input:focus {
    scale: 1.2;
}

/* ALL ARTICLES STYLES  */

.articles ul {
    list-style: none;
}

.articles h2 {
    font-size: 1.2vw;
    margin-bottom: 5px;
}

.articles li {
    padding: 20px 40px;
    border-radius: 20px;
    background-color: #fdf1f9;
    font-size: 1.1vw;
    margin-bottom: 30px;
}

.articles a {
    font-size: 1.1vw;
}

.articles button {
    margin-bottom: 30px;
    border-radius: 20px;
    width: 20%;
    background-color: #ff6600;
    border: none;
    height: 30px;
}

.articles button a {
    font-size: 1vw;
    color: #fff;
}

/* LOGIN PAGE STYLES  */

.login form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30%;
    align-items: center;
    margin: 0 auto;
}

.login label {
    font-size: 1.1vw;
    margin-bottom: 10px;
}

.login input {
    margin-bottom: 30px;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 20px;
    padding-left: 20px;
    border: 1px solid #aeaeae;
}

.login button {
    margin-bottom: 30px;
    border-radius: 20px;
    width: 100%;
    background-color: #ff6600;
    border: none;
    color: #fff;
    font-size: 1vw;
    height: 30px;
}

.login h1 {
    text-align: center;
}

.login input:focus {
    scale: 1.2;
}

.login p {
    text-align: center;
}

/* REGISTRATION STYLES  */

.register form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30%;
    align-items: center;
    margin: 0 auto;
}

.register label {
    font-size: 1.1vw;
    margin-bottom: 10px;
}

.register input {
    margin-bottom: 30px;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 20px;
    padding-left: 20px;
    border: 1px solid #aeaeae;
}

.register button {
    margin-bottom: 30px;
    border-radius: 20px;
    width: 100%;
    background-color: #ff6600;
    border: none;
    color: #fff;
    font-size: 1vw;
    height: 30px;
}

.register h1 {
    text-align: center;
}

.register input:focus {
    scale: 1.2;
}

.register p {
    text-align: center;
}