body {
    background: var(--black);
}

header {
    padding: 72px 24px 0;
    position: relative;
}

menu {
    width: calc(1024px - 48px);
    margin: 0 auto;
    list-style: none;
}

menu li a {
    color: #929292;
    text-decoration: none;
    transition: 0.3s;
}

menu li a:hover {
    color: #fff;
}

h1 {
    color:#ededee;
    width: calc(1024px - 48px);
    margin: 0 auto;
    padding: 100px 0;
}

article { 
    margin: 0 auto;
    padding: 0 24px;
}

article ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 0;
    margin: 0;
    list-style: none;
}

ul li a {
    display: flex;
    align-items: center;
    gap: 24px;
    text-decoration: none;
    border: none;
}

ul li a p {
    margin-bottom: 0;
}

a:hover .title::after {
    opacity: 1;
    bottom: 1px;
}

.title {
    transition: 0.3s;
    color:#e4e4e5;
    font-size: 16px;
}

.title::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color:#e4e4e5;
    display: block;
    opacity: 0;
    transition: 0.3s;
    position: relative;
    bottom: 0;
}

.date {
    color: #929292;
    font-size: 16px;
    flex-shrink: 0;
}

#author {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px;
}

#author h3 {
    font-size: 18px;
}
  
#author h3, p#date {
    color: var(--white);
    margin: 0;
}
  
#author p#date {
    font-size: 0.8em;
}

#author img {
    border-radius: 100%;
    height: 50px;
    width: 50px;
    box-shadow: 0 0 6px 3px #00000026;
    border: 2px solid #444;
}

.video-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

