nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.75em;
    margin-left: 1.25em;
    margin-right: 1.25em;
}

.start {
    display: flex;
    align-items: center;
}

.start img {
    margin-right: 2em;  
}

.end {
    display: flex;
    align-items: center;
}

#profile-foto {
    width: 35px;
    height: 35px;
    margin: 10px;
    background-image: url(../img/perfil-foto.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
}

.end img {
    margin: 10px;
}

.container {
    height: 100vh;
    padding: 2em 2em 0 5em;
    display: flex;
    justify-content: space-evenly;
}

main h2 {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 1.4em;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
}

#video {
    width: 100%;
    height: 650px;
    margin-bottom: 10px;
}

#video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1em;
}

.video-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 11em;
    margin-bottom: 20px;
}

.channel-info {
    display: flex;
}

.channel-info img {
    margin-right: 11px;
}

.channel-info div p span {
    font-weight: 600;
    font-style: SemiBold;
    color: black;
}

.channel-info div p {
    font-weight: 400;
    font-style: Regular;
    color: #515151;
}

.video-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    margin-left: 6px;
}

.video-buttons img {
    margin-right: 10px;
}

main button {
    color: white;
    text-transform: uppercase;
    background-color: #CC0000;
    width: 180px;
    height: 40px;
    cursor: pointer;
    transition: 0.1s;
    border-radius: 10px;
}

main button:hover {
    background-color: #ac0000;
    transition: 0.25s;
}

main button:active {
    transform: scale(0.9);
    transition: 0.1s;
}

.descricao-area {
    color: #515151;
    margin-top: 10px;
    width: 60%;
}

aside {
    width: 36%;
    margin-left: 20px;
}

.card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-bottom: 13px;
}

.card-text h4, p {
    font-size: 0.9em;
}

.card-text p {
    color: #515151;
}

.card-text h4 {
    padding-bottom: 10px;
}

.card-text h4 + p {
    padding-bottom: 10px;
}
