body {
    margin: 0; 
    padding: 0;
    background-image: url('./backgroundBLACK.jpg');
    background-size: cover;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

.navbar {
    display: flex;
    margin-left: 2.5%;
    margin-right: 2.5%;
    padding-left: 2.5%;
    padding-right: 2.5%;
    justify-content: space-between;
    height: 5%;
    background-color: rgb(63, 81, 176);
    align-items: center;
    border-radius: 0 0 15px 15px;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    list-style-type: none;
    justify-content: space-around;
    align-content: center;
    gap: 4%;
    width: 100%;
}

.navbar a {
    color: antiquewhite;
    display: block;
    text-decoration: none;
}

/* Info Box at the bottom right (ngl i used chat gpt for this... to an extend) */

.info-box {
    position: absolute;
    bottom: -3px;
    right: 11rem;
    display: 5rem;
    overflow: visible;

}

.slide-container {
    position: relative;
    width: 5rem;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.3, 1);
    transform: translateY(0);
}

.slide-container button {
    width: 100%;
    left: 300px;
    aspect-ratio: 3/1;
    border: none;
    background-color: rgb(85, 98, 147);
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
}

.hidden-image {
    position: absolute;
    bottom: -200px;
    left: 148%;
    transform: translateX(-50%);
    width: 230px;
    height: 200px;
    overflow: hidden;
    border-radius: 0px 12px 0 0;
    border-style: solid;
    border-color: rgb(85, 98, 147);
    border-bottom: none;
}

.hidden-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-container.open {
    transform: translateY(-200px);
}