body {
    background-color: #88452a;
    background-image: url(../img/bc.jpg);
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-repeat: repeat-y;
    overflow-x: hidden;
    margin: 0;
    font-family: "Open Sans", arial, sans-serif;
}

.navbar {
    width: 100vw;
    height: 50px;
    background: linear-gradient(180deg, rgba(23, 23, 23, 0.9), rgba(23, 23, 23, 0.9) 75%, rgba(185, 185, 185, 0));
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000; /* Ensure the navbar is above other content */
    display: flex;
    justify-content: first baseline; /* Distribute links evenly */
    align-items: center; /* Center items vertically */
}

.navbar a {
    text-decoration: none;
    color: white;
    font-family: "Open Sans",arial,sans-serif;
    font-size: 15.5px;
    padding: 10px 15px;
    position: relative;
    top: -5px;
}

.navbar a:hover {
    text-decoration: underline;
    color: #ccc;
}

.login {
    margin-left: auto;
}

.artwork-details-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    padding: 100px 20px 20px;
}

.artwork-text {
    flex: 1;
    max-width: 40%;
    margin-right: 20px;
}

.artwork-text h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: white;
}

.artwork-text p {
    font-size: 1.2em;
    line-height: 1.5;
    color: white;
}

.artwork-image {
    flex: 1;
    max-width: 45%;
}

.artwork-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 550px) {
    .login{
        display: none;
    }

    .artwork-text p {
        font-size: 0.7em;
        width: 85%;
        top: 45%;
        position: absolute;
    }
}

@media screen and (max-width: 404px) {
    .login{
        display: none;
    }

    .navbar{
        height: 32px;
    }

    .navbar a{
        font-size: 11.5px;
    }
}