body{
    margin: 0;
    padding: 0;
    overflow: hidden;
    cursor: url('./img/cursor.png') 16 16,auto;
    background-color: rgb(146, 15, 15);
}
/* page_01 */
#page_01{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 30%;
    /* background-color: yellow; */
    /* background: url(./img/sky_02.jpg) center/cover no-repeat; */

}
#page_01_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 600px;
    width: 600px;
    position: relative;
    top: 40px;
    border-radius: 20px;
    box-shadow: 2px 2px 2px, -2px -2px 2px yellow;
    background-color: aqua;
}
#page_01_container img{
    width: 300px;
}
#page_01_container h1{
    text-align: center;
    font-size: 30px;
    font-family: "Bungee Spice", sans-serif;
}
#page_01_container button{
    font-size: 50px;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 2px 2px 2px ;
    transition: 0.2s;
     font-family: "Flavors", cursive;
     color: rgb(255, 255, 255);
    background-color: rgb(245, 235, 54);
    text-shadow: 3px 3px 0px black,-3px -3px 0px black;
}
#page_01_container button:hover{
    transform: scale(1.03);
    cursor: pointer;
}
/* page_02 */
#sky{ 
    background: linear-gradient(rgba(255, 255, 255, 0.576)),url(./img/sky.jpg);
    animation : bgmovee 50s linear infinite;
}
@keyframes bgmovee{
    0%{
        background-position: 0 0;
    }
    100%{
        background-position: 1000px 0;
    }
}
#flexx{
    position: fixed;
    display: flex;
    flex-direction: column;
    color: rgb(255, 255, 255);
    right: 37%;
    top: -9px;
    z-index: 1;
    text-align: center;
}
#flexx h1{
    font-size: 50px;
}
#flexx button{
    font-size: 20px;
    border-radius: 20px;
    font-family: fantasy;
    padding: 10px;
}
#flexxx{
    position: fixed;
    display: flex;
    text-align: center;
    flex-direction: column;
    color: rgb(255, 7, 7);
    right: 42%;
    z-index: 1;
}
#flexxx h1{
    font-size: 50px;
    
}
#flexxx button{
    font-size: 20px;
    border-radius: 20px;
    font-family: fantasy;
    padding: 10px;
}
.btn{
    transition: 0.2s;
}
.btn:hover{
    transform: scale(1.1);
    box-shadow:5px 5px 2px black;
    cursor: pointer;
}
#container-01{
    display: grid;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-template-columns: auto auto auto;
    width: 100%;
    height: 180px;
    /* background-color: rgb(136, 255, 0); */
}
#container-01 h1{
    color: rgb(255, 0, 0);
}
.sps{
    /* background-color: rgba(0, 0, 255, 0.454); */
    position: relative;
    height: 140px;
    width: 100px;
    margin: 60px;
}
#cpu_name{
      font-family: "Aubrey", system-ui;
  font-weight: 400;
  font-style: normal;
}
#user_name{
      font-family: "Aubrey", system-ui;
  font-weight: 400;
  font-style: normal;
}
.sps_center h2{
      font-family: "Aubrey", system-ui;
  font-weight: 400;
  font-style: normal;
}
.sps img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.sps_center{
    background-color: rgba(255, 67, 67, 0);
}
#container-02{
    width: 100%;
    height: 200px;
    /* background: linear-gradient(); */
    display: grid;
    display: flex; 
    justify-content: center;
    align-items: center;
    grid-template-columns: auto auto auto;
    width: 100%;
}
#user_lives,#cpu_lives{
    background-color: rgb(87, 107, 233);
    padding: 20px;
    border-radius: 50px;
    box-shadow: 2px 2px 2px,-2px -2px 2px wheat;
}
.sps_result{
    background-color: rgb(255, 174, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 140px;
    width: 100px;
    margin: 10px;
    box-shadow: 4px 5px 0px,-3px -3px 0px rgb(51, 0, 181);
}
.sps_result img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.sps_result button{
    font-size: 20px;
    border-radius: 15px;
    padding: 5px;
    box-shadow: 4px 5px 7px blue,-1px -1px 6px rgb(192, 0, 0);
}
#user_name{
    margin-left: 100px;
}
#cpu_name{
    margin-right: 100px;
}

#container-03{
    border: 3px solid black;
    height: 280px;
    width: 100%;
    /* background-color: rgba(255, 255, 0, 0.531); */
    display: flex;
    justify-content: center;
    align-items: center;
    animation: bgmove 70s linear infinite;
    background: linear-gradient(to right, rgb(0, 245, 114),rgba(255, 0, 204, 0.936));
}
#man-01{
    height: 280px;
    width: 200px;
    /* background-color: aqua; */ 
    margin-right: 200px;
    position: relative;
}
#man-01 img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#man-02{
    height: 280px;
    width: 200px;
    /* background-color: aqua; */
    margin-left: 200px;
}
#man-02 img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}