.wrapper {
    margin: 0 auto;
    width: 100%;
    font-family: Arial, sans-serif;
}
html, body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    cursor: cell;
}
header{
    background-color: rgb(60,60,60);
    width: 100%;
    height: 150px;
    margin: 0;
    align-items: center;
    display: flex;
    justify-content: space-between;
}
/*
*:hover {
    display: none;
}
*/
nav{
    height: 100px;
    width: 1000px;
    flex-grow: 1;
    background-color: rgb(60,60,60);
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    display: flex;
    white-space: nowrap;
    padding: 0 20px;
    box-sizing: border-box;
}
nav a {
    color: #c0c0c0;
    text-align: center;
    text-decoration: none;
    font-weight: normal;
    font-size: 20px;
    padding-right: 50px;
    padding-left: 50px;
    padding-bottom: 50px;
    padding-top: 50px;
}
nav a:hover {
    color: rgb(255, 255, 255);
    font-weight: bolder;
    transform: translateY(-10px);
    transition: transform 0.3s ease;
}
aside{
    background-color: rgb(60,60,60);
    width: 400px;
    height: 150px;
    float: right;
}
.logo{
    background-color: rgb(60,60,60);
    width: 400px;
    height: 150px;
    float: left;
    margin: 0;
    padding: 0;
}
article{
    background: linear-gradient(to bottom right, rgb(70, 70, 70) 0%, #000000 100%);
    color: white;
    width: 100%;
    overflow: auto;
    height: 100%;
    padding: 20px;
}
.article-split {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 20px;
    padding: 20px 0 0 0;
    box-sizing: border-box;
}
.text-area {
    width: 50%;
    height: 100px;
    padding: 15px;
    font-size: 18px;
}
.image-area {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.image-area img {
    width: 450px;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
footer{
    background-color: rgb(60,60,60);
    width: 100%;
    height: 100px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    letter-spacing: 1px;
}
.glass-list li {
    list-style: none;
    padding: 30px;
    margin: 20px;
    background: rgba(255, 255, 255, 0.15); /* Semi-transparent background */
    border-radius: 30px; /* Rounded corners for a softer look */
    backdrop-filter: blur(10px) saturate(180%); /* The core glass effect */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border for definition */
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37); /* Depth and shadow */
}

.glass-list li:hover {
    transform: translateY(-15px);
    color: rgb(0, 204, 255);
}


span{
    color: rgb(34, 255, 0);
}