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

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

.roundtrojan {
    position: absolute;
    /* background-color: rgba(255, 0, 0, 0.4); */
    background-color: transparent;
    border-radius: 50%;
    width: 10vw;
    height: 10vw; 
    top: 25vw;
    left: 10vw;
    z-index: 1;
}

.roundwiper {
    position: absolute;
    /* background-color: rgba(255, 0, 0, 0.4); */
    background-color: transparent;
    border-radius: 50%;
    width: 5vw;
    height: 5vw; 
    top: 36.5vw;
    left: 96vw;
    z-index: 1;
}

.roundhoax {
    position: absolute;
    /* background-color: rgba(255, 0, 0, 0.4); */
    background-color: transparent;
    border-radius: 50%;
    width: 7vw;
    height: 7vw;
    top: 68vw;
    left: 85vw;
    z-index: 1;
}

.ransomware {
    position: absolute;
    /* background-color: rgba(255, 0, 0, 0.4); */
    background-color: transparent;
    border-radius: 50%;
    width: 27vw;
    height: 27vw;
    top: 76vw;
    left: 72vw;
    z-index: 1;
}

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

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

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

.about .about_inactive {
    display: inline;
}

.about .about_active  {
    display: none
}

.about:hover .about_inactive  {
    display: none;
}

.about:hover .about_active {
    display: inline;
}