

#launcher {
    font-family: 'Arial', sans-serif;
    background-color: #f1ecec;
    color: white;
    padding: 20px;
    border-radius: 5px;
    width: 500px;
    height: 550px;
    margin: auto;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    position: relative;
}

#launcher h1 {
    background-color: #4CAF50;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 24px;
}

#launcher p {
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
}

.button-image {
    width: 100%;
    height: auto;
    cursor: pointer;
}

#launcher img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.content-section {
    background-color: #222;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.content-section h2 {
    text-align: center;
    font-size: 20px;
    color: #4CAF50;
}

.footer-text {
    text-align: center;
    font-size: 12px;
    color: #aaa;
}
#news-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    margin-bottom: 15px;
}

.news-content {
    margin-top: 10px;
    flex-grow: 1;
    background-color: rgba(0, 0, 0, 0.5);
    height: 250px;
    background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
    text-align: center;
}
.news-content:hover {
    scale: 1.01;
}

#news-section button {
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

#start-button {
    position: absolute;
    margin: auto;
    width: 100%;
    margin-left: 130px;
    margin-bottom: 100px;
    margin-top: 30px;
    height: auto;
    cursor: pointer;
    z-index: 9999;


}
#launcher .bottom-image {
    width: 100%;
    position: absolute;
    bottom: 0px;
    height: 90px;
    margin-left: -20px;
}
#launcher .top-image {
    width: 100%;
    position: absolute;
    top: 0px;
    height: 90px;
    margin-left: -20px;
}
.informations {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.418);
    transition: all ease 0.2s;
}

.informations .title {
    margin: 0;
    max-width: 70%;
    color: white;
    font-weight: bold;
}
.informations .text {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    max-height: 4rem;
    margin: 0;
    max-width: 70%;
    color: rgb(194, 194, 194);
    transition: all ease 0.2s;
}
.informations .infobadge {
    background: var(--theme-button-background);
    color: var(--theme-button-color);
    font-weight: bold;
    padding: 5px 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: inline-block;
}
