/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */





body{
    font-family: 'Times New Roman', Times, serif;
}

.content {
    display: grid;
    justify-content: center;
}

.header-text {
    margin: 0px;
    font-size: 14px;
    position: relative;
    text-align: right;
    top: -10px;
}

nav {
    background-color: #e03c41;
    max-width: 600px;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-bottom: 30px;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    padding-left: 0px;
    gap: 2rem;
    justify-content: center;
}

nav a {
    color: white;
    font-size: 14px;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.nav-current {
    background-color: #f07070;
}

nav a:hover {
    background-color: #f07070;
    border-radius: 4px;
}

.site-description {
    max-width: 600px;
    font-size: 19px
}

.bio {
    border: 1px solid black;
    background-color: #ffffff;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5);
    padding: 8px;
    margin-top: 0px;
    margin-bottom: 16px;
    max-width: 585px;
    font-size: 19px;
}

.header-image {
    max-width: 600px;
    border-radius: 0px;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.5);
    margin-bottom: 8px;
}

.tweet-container {
    background-color: white;
    border: 0px solid black;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5); 
    border-radius: 5px;
    max-width: 600px;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px
}

.avibox {

    align-self: flex-start;
    width: 60px;
    border-radius: 50%;
    margin: 8px;
}

.display-name {
    font-size: 20px;
    margin-right: 8px;
}

.twitter-handle {
    font-size: 20px;
    margin-right: 8px;
}

.tweet-date {
    font-size: 20px;
    margin-right: 0px;
}

.tweet-content {
    margin-top: 10px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;

}

.tweet-text {
    font-size: 18px;
    line-height: 20px;
    max-width: 600px;
    margin-top: 8px;
    margin-right:8px;
    margin-bottom: 8px;
}

.embedded-media {
    min-width: 450px;
    max-width: 450px;
    border-radius: 10px;
    margin-bottom: 8px
}

.embedded-media-2wide {
    min-width: 220px;
    max-width: 220px;
    border-radius: 10px;
    margin-bottom: 8px
}

