@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

li, a, button {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgb(0, 0, 0);
    text-decoration: none;
}

header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 10%;
}

.logo {
    cursor: pointer;
    width: 7%;
    height: 7%;
    margin-right: auto;
}

.nav_links {
    list-style: none;
}

.nav_links li {
    display: inline-block;
    padding: 0px 20px;
}

.nav_links li a {
    transition: all 0.3s ease 0s;
}

.nav_links li a:hover {
    color: rgb(156, 156, 156);
}

button {
    padding: 9px 25px;
    background-color: rgba(156, 156, 156, 1);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

button:hover {
    background: rgba(156, 156, 156, 0.8);
}

.aboutmeArticleDiv {
    font-family: "Raleway", sans-serif;
    color: white;
    background-color: rgb(32, 32, 32);
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10%;
    padding-right: 10%;
    margin: 0%;
}

.liquidlogo {
    width: 95%;
    height: 95%;
}



footer {
    background:rgb(0, 0, 0);
    height: auto;
    font-family: "Raleway";
    padding: 20px;
    color: white;
}

.footerContent {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footerTop {
    font-size: 2em;
    font-weight: 800;
    padding-bottom: 8px;
}

.footerContent {
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
}

.socials {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 1rem 0;
}

.socials li {
    margin: 0 10px;
}

.socials a {
    text-decoration: none;
    color: rgb(156, 156, 156);
}

.socials li a {
    transition: all 0.3s ease 0s;
}

.socials a:hover {
    text-decoration: none;
    color: rgb(95, 95, 95);
}

.footerBottom {
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    text-align: center;
}