
body, html {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: white;
    
    
}

#title {
    position: absolute;
    top: 5%;
    left: 24%;
    z-index: 1;
    font-style: italic;
    font-weight: bold;
    -webkit-text-stroke: 2px black;
    
    color: white;
    
    /*-webkit-text-stroke: 2px #55bed8;
    color: white;*/
}

#container {
    
    background-color: skyblue;
    height: 100%;
    
    
    
}

#row1 {
    padding: 1%;
    height: 85%;
    
}

#row2 {
    padding: 1%;
    height: 15%;
    
}

#col2 {
    background-image: url("images/Untitled-1.png");
    background-size: 100%;
    background-position-y: 80%;
    background-repeat: no-repeat;
    position: relative;
}

#force-button {
    height: 70%;
    width: 50%;
}

.wrapper {
    display: flex;
    width: 100%;
    height: 89%;
    overflow-x: scroll;
    overflow-y:hidden;
    scroll-snap-type: x mandatory;
    
    
}

.card {
    
    scroll-snap-align: center;
    box-sizing: border-box;
    padding: 20px 30px;
    flex-shrink: 0;
    width: 100%;
    height: 89%;

    background-image: url("images/Untitled-1.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
    padding-bottom: 5%;
}

#character-button {
    display: grid;
    align-self: center;
}

#img1, #img2,#img3,#img4,#img5 {
    background-color: white;
    
}

#jump-img {
    width: auto;
    height: 50%;
    position: absolute;
    top: var(--kid-top);
    left: var(--kid-left);
    
    
}

.full-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000; /* Ensure it stays on top */
    background-color: white; /* Optional: Change background color if needed */
    
  }


:root {
    /* Animation Variables */
    --kid-top: 33%;
    --kid-left: 42%;
}

#return-button {
    visibility: hidden;
}

#character-selection-text {
    padding-top: 5%;
    font-family: 'Times New Roman', Times, serif;
    font-size: 25px;
    text-align: left;
    font-style: italic;
    font-weight: bold;
    
}

#force-label , #weight-label{
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    text-align: left;
    font-style: italic;
    font-weight: bold;
}

#force-range{
    padding-top: 3%;
}

#force-num {
    padding-top: 1.5%;
}

#weight-range{
    padding-top: 3%;
}

#weight-num {
    padding-top: 1.5%;
}