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

#payment_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.5;
    }
}

.close_icon {
    background-color: transparent;
    border-color: transparent;
    color: #ebebeb;
    font-weight: bold;
    float: right;
    cursor: pointer;

    &:hover {
        color: #f279c8;
    }
}

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

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

.ransomware {
    position: relative;
    background-color: black;
    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;
}

.info, .dollar {
    background-color: #8B6766;
    opacity: 0.9;
    border-color: transparent;
    padding: 0.3rem;
    border-radius: 3rem;
}

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

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

.info .info_inactive, .dollar .dollar_inactive {
    display: inline;
}

.info .info_active, .dollar .dollar_active  {
    display: none
}

.info:hover .info_inactive, .dollar:hover .dollar_inactive  {
    display: none;
}

.info:hover .info_active, .dollar:hover .dollar_active {
    display: inline;
}

/* Whitespaces */

body {
    padding: 0;
}

