/* General styles for body */
body {
    font-family: 'Helvetica', sans-serif;
    box-sizing: border-box;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* General styles for text */
p {
    font-family: 'Helvetica-Light', sans-serif;
    font-size: 14pt;
    line-height: 20pt;
}

/* Styling links */
a {
    text-decoration: none;
    color: black;
    padding: 5px;
}

h2 {
    display: inline;
}

video {
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* Responsive images and videos */
/* Initial state: Hidden images/videos */
img {
    width: 100%;
    max-width: 100%;
    height: auto;

    opacity: 0;
    transform: translateY(3vh);
    visibility: hidden;
    transition: opacity 0.5s ease-in, transform 0.5s ease-in;
    will-change: opacity, transform;
}

/* When the element becomes visible */
img.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}


/* Top bar styles */
#topbar {
    position: relative;
    padding: 20px;
}

#topbar_left {
    position: absolute;
    left: 5%;
}

#topbar_right {
    position: absolute;
    right: 5%;
}

/* Center container styles */
#center_container {
    max-width: 1200px; /* Maximum width for the content */
    margin: 0 auto; /* Center the container */
    padding: 0 20px; /* Padding on both sides */
    box-sizing: border-box;
}

/* Project information styles */
#project_info {
    width: 100%;
    padding: 50px 0; /* Padding for top and bottom */
}

/* Paragraph inside project info */
#paragraph_info {
    padding-top: 30px;
    padding-bottom: 20px;
}

/* Project type section */
#project_type {
    display: flex; /* Arrange items horizontally */
    justify-content: space-between; /* Space between the items */
    gap: 20px; /* Add spacing between items */
    padding: 20px 0px;
}

#project_type div {
    flex: 1; /* Each child takes equal space */
}

/* Titles inside project type */
.info_title {
    text-decoration: underline;
    font-weight: bold;
}

/* Dataset area styles */
#dataset_area {
    width: 100%;
    padding: 0px 0px; /* Padding for top and bottom */
}

#dataset_area p {
    padding: 50px 100px; /* Add vertical padding */
}
