html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-style: normal;
    padding: 20px;
    background-color: rgb(23, 23, 23);
    color: rgb(215, 215, 215);
}

.pagestart {
    display: block;
    text-align: center;
    margin-bottom: 70px; /* Add margin to separate from the div */
}

div {
    display: flex;
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    text-align: center;
    margin-top: 30px; /* Additional separation from other content if needed */
}

h2 {
    margin-top: 20px;
    margin: 0px 0; /* Reduce margin between heading and other elements */
}

p {
    margin: 0px 0; /* Reduce margin between paragraph and button */
}

.btn {
    background-color: #393939;
    border: none;
    color: white;
    padding: 20px 30px; /* Adjust padding to make button size smaller */
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin-top: 0px 0; /* Reduce margin around the button */
    border-radius: 12px;
    transition: 0.4s;
    margin-bottom: 10px;
}

.btn:hover {
    background-color: #535353;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    cursor: pointer;
}

.btndisabled {
    background-color: #393939;
    border: none;
    color: white;
    padding: 20px 30px; /* Adjust padding to make button size smaller */
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin-top: 0px 0; /* Reduce margin around the button */
    border-radius: 12px;
    transition: 0.4s;
    margin-bottom: 10px;
    opacity: 0.7;
    cursor: not-allowed;
}

.hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: all 1s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.homebtn {
    position: flex;
    top: 40px;
    left: 40px;
    width: 50px;
    height: 50px;
    background-color: #393939;
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 12px;
    transition: 0.4s;
}

.homebtn:hover {
    background-color: #535353;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    cursor: pointer;
}