body {
    background-image: url(../images/Background.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

/*.text-center {
    padding-top: 5px;
}*/

.row p {
    font-size: 25px;
    margin: -15%;
    text-align: center;
    color: #dee;
    font-family: "Lucida Grande", Helvetica, sans-serif;
    text-shadow: -1px 0 0 #000, 0 -1px 0 #000, 1px 0 0 #000, 0 1px 0 #000,
    0 0 2px #000;
}

/*Navbar*/
.navbar {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 150px;
    background: #24272B;
    transition: 0.3s ease-in-out;
    text-shadow: -1px 0 0 #000, 0 -1px 0 #000, 1px 0 0 #000, 0 1px 0 #000, 0 0 2px #000;
    color: #DEE;
}

.navbar a {
    text-decoration: none;
}

.navbar .menu-mobile {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.navbar .menu-mobile .logo {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    gap: 10px;
}

.navbar .menu-mobile .logo img {
    max-width: 40px;
    height: auto;
}

.navbar .menu-mobile .logo h3 {
    color: #DEE;
    font-weight: 900;
    font-size: 20px;
}

.navbar .links {
    display: flex;
    flex-direction: row;
    gap: 30px;
    transition: 0.3s ease-in-out;
}

.navbar .links .link {
    color: #D2D0D0;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: 0.2s;
}

.navbar .links .link.active {
    color: #DEE;
}

.navbar .links .link.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 3px;
    border-radius: 5px;
    background: #39BEFF;
}

.navbar .links .link:not(.active):hover {
    color: #DEE;
}

.navbar .menu-mobile .hamburger {
    color: #DEE;
    font-size: 20px;
    cursor: pointer;
    transition: 0.5s;
    display: none;
}

.navbar .menu-mobile .hamburger:hover {
    opacity: 0.8;
}

.navbar.active {
    max-height: 1000px;
}

.navbar.active .links {
    opacity: 1;
    z-index: 2;
}

/* IP */
.pCount {
    background-color: rgb(0 0 0 / 0.15);
    box-shadow: inset 0 0 8px;
    font-size: 14px;
    height: 38px;
    margin: 0 auto;
    text-align: center;
    width: auto;
    max-width: 550px;
}
.pCount h3 {
    color: #dee;
    font-family: "Lucida Grande", Helvetica, sans-serif;
    margin: 0;
    padding-top: 2px;
    text-shadow: -1px 0 0 #000, 0 -1px 0 #000, 1px 0 0 #000, 0 1px 0 #000, 0 0 2px #000;
}

/* Buttons */
.zoom {
    position: relative;
    transition: transform 0.5s;
    z-index: 1;
}

.zoom img {
    border-radius: 25%;
}

.zoom:hover {
    transform: scale(1.25);
    object-fit: cover;
    z-index: 2;
}

.ttip {
    position: relative;
}

.ttip .ttiptext {
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.5s;
}
.ttip .ttiptext:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 #fff0 #fff0 #fff0;
}
.ttip:hover .ttiptext {
    opacity: 1;
}


/*Responsive*/
@media only screen and (max-width: 768px) and (min-width: 248px) {
    body {
        background-attachment: scroll;
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        padding-bottom: 5%;
    }
    .text-center img {
        width: 100%;
    }
    .pCount h3 {
        padding-top: 4px;
        font-size: 24px;
    }
    .zoom {
        margin-left: auto;
        margin-right: auto;
        width: 50%;
    }
}

@media screen and (max-width: 1625px) {
    .navbar {
        padding: 20px 90px;
    }
}

@media screen and (max-width: 819px) {
    .navbar {
        padding: 20px 30px;
    }
}

@media screen and (max-width: 867px) {
    .navbar {
        flex-direction: column;
        gap: 30px;
        max-height: 90px;
    }

    .navbar .menu-mobile {
        width: 100%;
    }

    .navbar .menu-mobile .hamburger {
        display: flex;
    }

    .navbar .links {
        flex-direction: column;
        order: 2;
        width: 100%;
        opacity: 0;
        z-index: -1;
    }
}