/* 
    CSS Reset 
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: normal;
    font-size: 100%;  
}

ul,
ol {
    list-style: none;
}

img,
video {
    width: 100%;
}

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

/* Font Sizes */

:root {
    font-size: 16px;
}

/* Font Styles */

body {
    font-family: Verdana, sans-serif;
}

/*
    Styles
*/

body {
    background-color: #e4a6a7;
}

.hoax_profile {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.navbar {
    width: 100%;
    background-color: transparent;
    padding: 0 5rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    overflow: hidden;
    position: fixed;
    bottom: 1rem;
}

.navbar ul {
    list-style: none;
    gap: 3rem;
    display: flex;
}

.navbar ul img {
    position: relative;
    width: 3rem;
}

.homepage .homepage_inactive {
    display: inline;
}

.homepage .homepage_active {
    display: none
}

.homepage:hover .homepage_inactive  {
    display: none;
}

.homepage:hover .homepage_active {
    display: inline;
}

/* Whitespaces */

body {
    padding: 0;
}