header {
    background-color: rgb(122, 10, 10);
    padding: 20px 0px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    margin-bottom: 20px;
}

header .menu {
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
}

nav {
  text-align:center;
}

nav h1 {
    color: white;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -20px;
}
nav h1 a {
  color: #fff;
  font-size: 40px;
  font-weight: 200;
  letter-spacing: 10px;
  text-transform: uppercase;
}

a {
	color: rgb(255, 255, 255);
	text-decoration: none;
}

.user-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 16px;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    object-fit: cover;
    border: 2px solid white;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

#howl-input {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 70vw;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.6);
}

#howl-input textarea {
    width: 90%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    resize: none;      
    box-sizing: border-box;
}

.post-howl {
    background-color: rgb(122, 10, 10);
    border: 1px solid black;
    color: white;
    padding: 10px 20px;
    border-radius: 15px;
}

.post-howl:hover {
    background-color: rgb(83, 5, 5);
    cursor: pointer;
}

.container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.howl-header {
    display: flex;
    gap: 10px;
}

.howl-header a{
    color: black;
}

.howl-header a:hover {
    color: red;
}

#howl-list {
  grid-area: howls;
  width: 100%;
}

.howl {
  margin-bottom: 10px;
}

.howl:last-child {
  margin-bottom: 0;
}

.howl .user {
  font-weight: bold;
  margin-bottom: 5px;
}

.howl .content {
  margin-bottom: 10px;
}

.tab {
    background-color: rgb(122, 10, 10);
    border: 1px solid black;
    color: white;
    padding: 10px 20px;
    border-radius: 15px;
}

.tab:hover {
    background-color: rgb(83, 5, 5);
    cursor: pointer;
}

@media (max-width: 480px) {
    header {
        align-items: left;
        justify-content: space-between;
    }

    nav h1 {
        position: absolute;
        left: 5%;
        transform: translateX(0%);
        margin-top: -30px;
    }
}


