* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: linen;
}

#move {
    width: 50%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Baskervville', serif;
    color: linen;
    background-color: rgb(20, 30, 40);
}

main {
    width: 80%;
    margin: auto;
}

img {
    width: 100%;
    object-fit: cover;
}

header {
    text-align: center;
}

header h1 {
    font-size: 8rem;
    color: orangered;
}

header p {
    font-size: 4rem;
}

.info {
    width: 100%;
    height: 5%;
    display: flex;
    margin-top: 1%;
}

.author {
    width: 50%;
    font-size: 4rem;
}

.social-icons {
    width: 50%;
    font-size: 4rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    align-items: center;
    color: white;
}

.text {
    font-size: 3rem;
    display: grid;
    grid-template-columns: minmax(2rem, 1fr) minmax(min-content, 94rem) minmax(2rem, 1fr);
    row-gap: 3rem;
    grid-column: 2 / 3;
    letter-spacing: 0.6px;
    column-width: 25rem;
    text-align: justify;
}

.author-name a:hover {
    background-color: #306203;
}

.publish-date {
    color: rgba(255, 255, 255, 0.5);
}

.first-paragraph::first-letter {
    font-size: 6rem;
    color: orangered;
    float: left;
    margin-right: 1rem;
}

.quote {
    color: #00beef;
    font-size: 2.4rem;
    text-align: center;
    font-family: "Raleway", sans-serif;
}

.quote::before {
    content: '" ';
}

.quote::after {
    content: ' "';
}

hr {
    margin: 1.5rem 0;
    border: 1px solid rgba(120, 120, 120, 0.6);
}