/* pokebola */

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #2a2a2a;
}

.pokebola {
    position: relative;
    width: 250px;
    height: 250px;
    background-color: #FFF;
    border: 5px solid #000;
    border-radius: 50%;
    box-shadow: inset -10px 10px 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: gira 2s infinite;
    margin: 20px auto;
}

.pokebola:before, .pokebola:after {
    content: "";
    position: absolute;
}

.pokebola:before {
    background-color: #EF4036;
    width: 100%;
    height: 50%;
}

.pokebola:after {
    top: calc(50% - 10px);
    width: 100%;
    height: 20px;
    background-color: #000;
}

.pokebola-style {
    width: 50px;
    height: 50px;
    background-color: #FFF;
    border: 10px solid #000;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    z-index: 10;
}

.pokebola-style:before {
    content: "";
    position: absolute;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
    width: 20px;
    height: 20px;
    background-color: #FFF;
    border: 3px solid #000;
    border-radius: 50%;
    z-index: 10;
}

.inicio-div {
    padding: 50px;
    position: absolute;
    top: 0; 
    width: 100%;
    display: flex;
    float: left;
    justify-content: center; 
    z-index: 2; 
}

.container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.container{
    background-color: rgb(9, 8, 8);
}

body {
    margin: 20px;
}








nav {
    background-color: #5e5c5c;
    margin-bottom: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff9900;
}

@keyframes gira {
    0%, 100% {
        transform: translateY(-5px);
    }
    50% {
        transform: translateY(5px);
    }
}
