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

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3 {
    font-family: "Raleway", sans-serif;
}

header {
    /*changing display from elements under each other to next each other*/
    display: flex;
    /*controlling horizental distribution*/
    justify-content: space-between;
    /*controlling vertical distribution*/
    align-items: center;
    padding: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    /*space between the elements without touching the edges*/
    gap: 20px;
}

nav a {
    text-decoration: none;
}

.main-content {
    display: flex;
    gap: 0px;
}

.main-content article {
    flex: 1;
    padding: 24px;
    border: 1px solid black;
}

.main-content article hr {
    border-top: 1px solid black;
    margin-left: -24px;
    margin-right: -24px
}

.main-content article + article {
    border-left: none;
}

.main-content article h2,
.main-content article h3,
.main-content article p {
    margin-bottom: 10px;
}

.main-content article a {
    display: block;
    margin-bottom: 10px;
}

.hero {
    text-align: center;
    padding: 60px 20px;
}

.review-cards {
    display: flex;
    padding: 20px;
    gap: 20px;
}

.review-cards article {
    flex: 1;
    padding: 20px;
    border: 1px solid black;
    border-radius: 50px;
}

body > footer {
    text-align: center;
    padding: 50px 50px 300px;
    margin-top: 50px;
    /*border-top: 1px solid black;*/
}

.reviews h2 {
    padding: 20px;
}

/*.logo {
    display: flex;
    gap: 20px;
    align-items: center;
}*/

.logo p {
    font-size: 1.25rem;
    font-weight: bold;
}

.logo a {
    text-decoration: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero p{
    color: gray;
    padding: 4px;
}

.projects ul {
    list-style-type: none;
}

.projects li {
    padding: 8px;
}

.education ul {
    list-style-type: "- ";
}

.education h3 {
    font-weight: normal;
    font-family: "Roboto", sans-serif;
}

.review-cards footer {
    color: #999;
}

/*.review-cards article {
    max-width: 250px;
}*/