* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-snap-type: start;
    background-color: #000;
    scrollbar-width: None;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    width: auto;
    color: white;
    /* Ensure the content takes the full height of the viewport */
}

h1 {
    color: white;
    margin-top: 10px;
    /* Adjust as needed */
}

header {
    background-color: #000000;
    color: #fff;
    text-align: center;
    position: relative;
    top: 0;
    z-index: 100;
    width: 100%;
    margin: 0;
    /* Make the header span the full width */
}

main {
    padding: 10px;
    min-height: 75vh;
}

.container {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    /* Make the image responsive */
    overflow: hidden;
    /* Hide any overflowing content */
    border-radius: 5%;
    margin-top: 30px;
}

img {
    width: 100%;
    height: 100vh;
}

.image {
    width: 100%;
    /* Ensure the image takes up 100% of the container */
    height: 100%;
    /* Maintain the aspect ratio of the image */
    object-fit: cover;
    object-position: center;
}

.actions {
    position:absolute;
    top:45%;
    /* Center vertically */
    left: 75%;
    /* Center horizontally */
    /* Adjust for centering */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items:stretch;
    padding: 10px;
    z-index: 1;
    /* Place the actions above the image */
}

.actions button {
    align-content: center;
    background-color: #333;
    color: #fff;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    justify-content: space-evenly;
    margin-block-end: 40px;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1e1e1e;
    display: flex;
    justify-content: space-around;
    padding: 10px;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

footer button {
    background-color: #333;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}



@media (min-width: 1000px) {
    .container {
        margin-top: 10px;
    }
    .actions{
        left:90%;
        
    }
}

.title{
    position: relative;
    text-align: center;
}
.tags{
    position:relative;
    padding-bottom:50px;
}

#tags{
    width: 150px;
}

#captcha{
    position: relative;
    margin: 2%;
}

.search{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    position: relative;
    top:-500px;
}
button{
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    background-color:#3e6eff;
    color: white;
    cursor: pointer;
    margin: 10px;
}
input[type="text"] {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
