* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    background-color: rgb(5, 5, 60);
}

a {
    text-decoration: none;
}

.appInfo {
    padding: 30px 0px;
    color: white;
}

.appInfo h1 {
    font-weight: bold;
    text-shadow: 2px 2px 8px rgb(255, 190, 0);
}

.appTitle {
    text-align: right;
    border-bottom: 2px solid rgb(255, 190, 0);
}

.appTitle p {
    font-size: 18px;
    text-shadow: 2px 2px 5px rgb(255, 190, 0);
}

.appNewDesc {
    padding: 10px 0px;
}

.appNewDesc h2,
.appNewDesc h4 {
    font-weight: bold;
    padding: 10px 0px;
}

.newText1 {
    color: rgb(255, 190, 0);
}

.newText2 {
    color: rgb(0, 234, 255);
}

.appMap {
    justify-content: center;
    padding: 30px 10px;
}

svg {
    width: 100%;
    height: 85vh;
}

path {
    stroke: white;
    fill: transparent;
    cursor: pointer;
    transition: 0.6s;
}

path:hover {
    fill: rgb(255, 190, 0);
    filter: drop-shadow(0px 0px 6px rgb(255, 255, 255, 0.8));
    transform: translate(-6px, 3px);
}