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

html, body {
    width: 100%;
    height: 100%;
    background-color: #121212;
    font-family: 'Roboto', sans-serif;
}

body {
    overflow-y: hidden;
}

::-webkit-scrollbar {
    display: none;
}

#main-container {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 60px;
    height: 100%;
}

#top-bar-container {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 10;
    background-color: #1A1A1A;
    border-bottom: 1px solid rgb(50, 50, 50);
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 10px 10px;
}

#top-options {
    display: flex;
    margin-right: 8px;
}

.top-nav {
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    position: relative; 
    padding: 0 8px;
    cursor: pointer;
}

#sobre-button {
    background-color: rgba(255, 255, 255, 0);
    border: 0;
}

#info-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80px;
}

#main-title {
    color: green;
    font-weight: bold;
    font-size: 24px;
    display: flex;
    align-items: center;
    width: 100%;
}

#main-text {
    display: flex;
    justify-content: center;
    color: white;
    font-size: 14px;
    text-align: center;
}

.btn-google {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #dadce0 !important;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 40px;
    border-radius: 5px;
}

.btn-google:hover {
    background-color: #f7f8f8 !important;
    cursor: pointer;
}

.btn-google::before {
    content: "";
    background: url('https://www.gstatic.com/images/branding/product/1x/gsa_ios_64dp.png') no-repeat center center;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
}

#art-container {
    display: flex;
    gap: 16px;
    padding: 0 10px;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    height: calc(100% - 160px) !important;
    width: 100%;
    align-items: flex-start;
    cursor: pointer;
}

.art-image {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;

    scroll-snap-align: center;
    scroll-snap-stop: always;

    user-select: none;
    -webkit-user-drag: none;
}

#footer {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 26px;
    height: 60px;
}

.footer-pagination {
    background-color: #494949;
    height: 10px;
    width: 10px;
    margin: 0 6px;
    border-radius: 100px;
}

.current-footer {
    background-color: lightgray;
}

#dev-info {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: start;
    position: fixed;
    bottom: 0;
    font-size: 10px;
    height: 26px;
    color: lightslategray;
}

#dev-link {
    color: rgb(159, 183, 206);
    text-decoration: none;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 20;
}

.modal-container {
    background: #0f0f0f;
    border-radius: 4px;
    width: 400px;
    height: 600px;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgb(51,51,51);
}

#modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: #0f0f0f;
    z-index: 3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    height: 49px;
    position: sticky;
    top: 0;
}

#modal-title {
    color: white;
    font-weight: bold;
    font-size: 18px;
}

#modal-close {
    display: flex;
    justify-content: center;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    background-color: #5d5d5d;
    color: white;
    height: 24px;
    width: 24px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

#modal-close:hover {
    background-color: #716f6f;
}

#modal-body {
    height: auto;
    color: white;
    padding: 16px;
}

.modal-text-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.modal-text-body {
    font-size: 12px;
    line-height: 1.5;
}

.modal-text-divisor {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 12px 0;
}

ul {
    padding-left: 20px;
}
