@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');

body {
    margin: 0;
    font-family: Garamond, serif;
    color: #111;
    background-color: white;
}

header {
    background-color: orange;
    padding: 25px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-family: Helvetica, Arial, sans-serif;
    color: white;
}

nav {
    padding: 12px;
    text-align: center;
    border-bottom: 2px solid orange;
    background-color: white;
}

nav a {
    font-family: "Roboto Mono", monospace;
    color: orange;
    text-decoration: none;
    margin: 0 12px;
    font-size: 17px;
    transition: color 0.3s, font-size 0.3s;
}

nav a:hover {
    color: orange;
    font-size: 18px;
}






main {
    min-height: 500px;
    padding: 30px;
}

main article {
    margin-bottom: 20px;
}

.article-link {
    text-decoration: none;
    color: black;
}

.article-link:hover {
    color: orange;
}

main h2,
main h3 {
    font-family: Helvetica, Arial, sans-serif;
    margin-top: 15px;
}

main a {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

aside article {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #cccccc;
}

.article-main {
    padding: 40px 20px 60px 20px;
    background-color: #f3f3f3;
}

.article-content h2 {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 34px;
    font-weight: bold;
    text-align: center;
    color: #16324f;
    line-height: 1.2;
    margin-bottom: 25px;
    
}

.article-image {
    display: block;
    width: 100%;
    max-width: 620px;
    height: auto;
    margin: 0 auto 25px auto;
}

.article-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.article-left {
    display: inline-block;
    width: 20%;
}

.article-content {
    display: inline-block;
    vertical-align: top;
    width: 50%;
}

.vote-box {
    display: inline-block;
    vertical-align: top;
    width: 20%;
    margin-left: 5%;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    padding: 15px;
    text-align: center;
}

.resume {
    font-weight: bold;
    font-size: 20px;
    color: #16324f;
    margin-bottom: 20px;
}

.vote-icons {
    font-size: 24px;
    margin: 15px 0;
}

.article-content p {
    font-family: Garamond, serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 20px;
    text-align: justify;
}

.article-content .article-info {
    font-size: 15px;
    color: gray;
    margin-top: 30px;
}

footer {
    background-color: orange;
    color: white;
    padding: 20px;
    margin-top: 40px;
}

footer h3,
footer h4 {
    margin-top: 0;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 15px;
}

footer li {
    margin-bottom: 6px;
}

footer p {
    font-size: 15px;
}

footer .row:last-child {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid white;
}


.custom-main {
    padding: 30px 20px;
    text-align: center;
}

.custom-left,
.custom-preview,
.custom-right {
    display: inline-block;
    vertical-align: top;
    min-height: 650px;
}

.custom-left,
.custom-right {
    width: 22%;
    background-color: #f2f2f2;
    padding: 20px;
    text-align: left;
}

.custom-preview {
    width: 50%;
    padding: 0 20px;
}

.resume-custom {
    font-weight: bold;
    font-size: 17px;
    color: #16324f;
    margin-bottom: 20px;
    text-align: center;
}

.custom-left h2,
.custom-right h2,
.custom-preview h2 {
    font-family: Helvetica, Arial, sans-serif;
    margin-top: 0;
}

.custom-left label,
.custom-right label {
    display: block;
    margin-top: 15px;
    margin-bottom: 6px;
    font-family: "Roboto Mono", monospace;
    font-size: 14px;
}

.custom-left input,
.custom-left select,
.custom-right input,
.custom-right select {
    width: 100%;
    margin-bottom: 10px;
    padding: 6px;
    box-sizing: border-box;
}

.preview-article {
    background-color: white;
    border: 1px solid #cccccc;
    padding: 20px;
    max-height: 650px;
    overflow-y: auto;
    text-align: left;
}

.preview-article h2{
    text-align: center;
}

.preview-image {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 20px auto;
}

.custom-left input[type="reset"],
.custom-right input[type="reset"] {
    background-color: orange;
    color: white;
    border: none;
    padding: 8px;
    margin-top: 10px;
    transition: 0.3s;
}

.custom-left input[type="reset"]:hover,
.custom-right input[type="reset"]:hover {

    background-color: rgb(244, 189, 86);
}