/* 
    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;
}

h4 {
    padding-top: 0;
    color: #f279c8;
    font-weight: bold;
}

p {
    color: #ebebeb;
}

/*
    Styles
*/


body {
    background-color: #e4a6a7;
}

.info, .homepage {
    background-color: transparent;
    border: none;
}

.info {
    padding-top: 0.2rem;
}

#joke_popover {
    background-color: #8B6766;
    border: none;
    padding: 2.5rem 2rem 3rem 2.5rem;
    border-radius: 1rem;
    max-width: 50vw;
    margin: auto;
    margin-top: 15vw;

    &::backdrop {
        background-color: #ebebeb;
        opacity: 0.3;
    }
}

.close_icon {
    background-color: transparent;
    border-color: transparent;
    color: #ebebeb;
    font-weight: bold;
    padding-left: 1rem;
    padding-bottom: 0.5rem;
    float: right;
    cursor: pointer;

    &:hover {
        color: #f279c8;
    }
}

.homepage_button, .info_button {
    width: 100%;
    border: none;
    border-radius: 2rem;
    padding: 0.8rem 2rem;
    background-color: #bb7880;
    cursor: pointer;
    color: #ebebeb;

    &:hover {
        background-color: #f279c8;
    }
}

.info_button {
    margin-bottom: 1rem;
}

.hoax {
    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;
}

.info .info_inactive, .homepage .homepage_inactive {
    display: inline;
}

.info .info_active, .homepage .homepage_active  {
    display: none
}

.info:hover .info_inactive, .homepage:hover .homepage_inactive  {
    display: none;
}

.info:hover .info_active, .homepage:hover .homepage_active {
    display: inline;
}

/* Whitespaces */

body {
    padding: 0;
}