@font-face {
    font-family: "Georgia";
    src: url("../georgia-font/georgia.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Georgia";
    src: url("../georgia-font/georgiab.ttf");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Georgia";
    src: url("../georgia-font/georgiai.ttf");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "Georgia";
    src: url("../georgia-font/georgiaz.ttf");
    font-weight: bold;
    font-style: italic;
}

/* Fonts end here */

body {
    font-family: "Georgia";
    color: #222222;
    width: 55%; margin: auto;
}

.upperThird {
    font-size: 45px;
    text-align: center;
    width: 75%;
    margin: auto;
    margin-top: 45px;
    margin-bottom: 45px;
}

.articleContainer {
    width: 10vw;
    height: max-content;
    padding: 10px;
    background-image: linear-gradient(#DEDEDE,#C9CAC9);
    border: 1px #A0A0A0 solid;
    line-height: 1;
    display: flex;
    flex-direction: column;
}

.goBack {
    position: absolute;
    top: 15px;
    left: 15px;
    font-family: Georgia;
    font-size: 25px;
    background-color: transparent;
    border-radius: 5px;
    border: none;
    box-shadow: 0px 2px 5px;
    cursor: default;
}

.goBack:hover {
    cursor: pointer;
}