html, body {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

body {
    display: flex; /* Flexbox container */
    flex: 1; /* Ensure body takes up full height */
    flex-direction: column; /* Arrange children vertically */
    background-color: #3f7bfc;
}

.privacy-html {
    height: auto;
}

.background {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    /* justify-content: center; */
    display: flex;
    flex-direction: column; 
    /* align-items: center; */ 
}

.slide {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    color: 'white';
    scroll-snap-align: start;
}

.slide-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
    /* border-color: red;
    border-style: solid;
    border-width: 5px; */
    /* justify-content: center; */
    height: 100vh;
    width: 100%;
    align-self: center;
    box-sizing: border-box; /* Ensure padding and border are included in width/height */
    scroll-snap-align: start;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    height: 97%;
    color: white;
    /* font-family: "Roboto Mono", monospace; */
    /* border-left: thin solid white;
    border-right: thin solid white; */
    border: thin solid white;
    border-radius: 10px;
    width: 512px;
    align-self: center;
    max-height: 100%;
    box-sizing: border-box; /* Ensure padding and border are included in width/height */
    scroll-snap-align: start;
}

.content {
    display: flex;
    height: 70%;
    flex-direction: column;
    /* justify-content: space-evenly; */
    /* align-items: center; */
}

#middle{
    background-color: white;
    border-color: black;
    border-style: solid;
    border-width: 4px;
    height: 98vh;
}

.header {
    display: flex;
    max-height: 10%;
    z-index: 2;
    width: 100%;
    justify-content: center;
    font-size: 1.5rem;
}

.button-wrapper {
    display: flex;
    height: 15%;
    margin-top: auto; /* Pushes the footer to the bottom */
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 3%;
    padding-bottom: 5%;

}

p {
    padding: 0.5rem;
    /* font-family: "Roboto Mono", monospace; */
    color: black;
     font-size: 1.2rem;
}

li {
    /* font-family: "Roboto Mono", monospace; */
    color: black;
       font-size: 1.2rem;
}

.headerText {
    padding: 2rem;
    /* font-family: "Roboto Mono", monospace; */
    font-size: 1.5rem;
    font-weight: bold;
}

.headerWrapper {
    margin-top: 25px;
}

.player-img-div {
    height: 75%;
    animation: float 3s linear infinite;
    display: flex;
    justify-content: center;
}

.privacy-container {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: flex-start;
    height: 100%;
    font-family: Arial, sans-serif;
    border: 2px solid black;
    border-radius: 10px;
    background-color: white;
    width: 760px;
    align-self: center;
    max-height: 100%;
    box-sizing: border-box; /* Ensure proper layout handling */
}

strong {
    padding: 1rem;
    padding-bottom: 0.1rem;
    font-weight: bold;
    /* font-family: "Roboto Mono", monospace; */
    font-family: Arial, sans-serif;
    font-size: 1.4rem;
    color: black;
}

#subheader {
    padding: 1rem;
    padding-bottom: 0.1rem;
    margin: 0;
    /* font-weight: bold; */
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    color: black;
}

.logo-wrapper {
   margin-top: 2rem;
   flex: 1 1 auto;
}

img {
    max-height: 100%;
    max-width: 100%;
}

.player-img {
    flex-shrink: 1;
    box-sizing: border-box;
}

.buttonRow {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 90%;
    align-self: center;
    /* margin-top: 5%; */
}

.roboto-mono-regular {
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.button {
    padding: 10px;
    border-radius: 5px;
    background-color: #3f7bfc;
    color: white;
    font-family: "Roboto Mono", monospace;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
}

.button:hover {
    background-color: #699ffc;
}

.play-badge-img:hover {
    cursor: pointer;
}

.logo-terms-li {
    padding: 0.5rem;
}

.interaction-terms-li {
    padding: 0.5rem;
}

/* Media Query for smaller screens */
@media (max-width: 1000px) {
    .container {
        width: 94%; /* Adjust the width as needed for smaller screens */
    }
    .privacy-container {
        width: 94%; /* Adjust the width as needed for smaller screens */
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}
