/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #F5F8FA;
    color: #14171A;
}

header {
    background-color: #1DA1F2;
    padding: 15px;
    color: white;
    text-align: center;
}

header h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.main-content {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    gap: 20px;
}

.sidebar, .trending {
    background-color: white;
    border: 1px solid #E1E8ED;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
}

.sidebar .profile {
    text-align: center;
}

.sidebar .profile img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.feed {
    flex-grow: 1;
    background-color: white;
    border: 1px solid #E1E8ED;
    padding: 20px;
    border-radius: 10px;
}

.tweet-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.tweet-box textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #E1E8ED;
    border-radius: 10px;
    resize: none;
}

.tweet-box button {
    align-self: flex-end;
    background-color: #1DA1F2;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

.tweet {
    border-bottom: 1px solid #E1E8ED;
    padding: 15px 0;
}

.tweet h3 {
    color: #1DA1F2;
    margin-bottom: 5px;
}

.tweet p {
    color: #14171A;
}

.trending h2 {
    margin-bottom: 10px;
}

.fakelink {
	color: #1DA1F2;
}

.trending ul {
    list-style-type: none;
    padding: 0;
}

.trending ul li {
    margin-bottom: 10px;
}

.trending ul li a {
    text-decoration: none;
    color: #1DA1F2;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #E1E8ED;
    color: #657786;
}
