header {
    background-color: rgb(122, 10, 10);
    padding: 20px 20px;
    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;
}

.profile-pic1 {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    object-fit: cover;
    border: 2px solid rgb(0, 0, 0);
}

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

.profile-header {
    background-color: rgb(199, 199, 199);
    padding: 20px 50px;
    display: flex;
    gap: 30px;
    border-radius: 20px;
    border: 1px solid black;
    width: 80%;
    align-items: center;  
    justify-content: space-between
}

.name {
    display: flex;
    color: black;
}

.name-1 {
    font-size: 20px;
    font-weight: bold;
}

.follow {
    border-radius: 20px;
    width: 80px;
    height: 40px;
    background-color: rgb(122, 10, 10);
    color: white;
    border: 2px solid black;
}

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

.main-section {
    display: flex;
    gap: 20px;
}

.following {
    background-color: rgb(161, 161, 161);
    padding: 10px 20px;
    border: 1px solid black;
    border-radius: 20px;
    min-width: 300px;
}

.follow-list li {
    color: white !important;
    list-style-type: none !important;
}

.following .follow-list ul {
    padding-left: 0 !important;  /* bootstrap adds padding to ul */
    margin: 0 !important;
}

.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-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;
}

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

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

    .main-section {
        flex-direction: column;
    }

    .profile-header {
        width: 100%;
    }
}