body {
    margin: 0;
    padding: 0;
    height: 100vh;
    color: #FFFFFF;
}

.bg-gradient {
    background-image: linear-gradient(to bottom right, #845EC2, #D65DB1, #FF6F91, #FF9671);
}

.bg-dark {
    background-color: #262626;
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    padding-left: 3rem;
    padding-right: 3rem;
}

.main {
    display: flex;
    height: 90vh;
    align-items: center;
}

.slogan {
    width: 30vw;
    display: flex;
    flex-wrap: wrap;
    font-size: 7rem;
    align-items: center;
    align-self: start;
    margin-top: 3rem;
    padding-left: 3rem;
}

.footer {
    position: absolute;
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    bottom: 0;
    padding-left: 3rem;
    padding-bottom: 1rem;
}

.bg-image {
    position: fixed;
    height: 85vh;
    width: auto;
    bottom: 0;
    right: 10%;
}

.logo {
    font-size: 2rem;
}

.logo-accent {
    color: #FE5D26;
}

.btn {
    background-color: #FE5D26;
    border: none;
    border-radius: 15px;
    color: #FFFFFF;
}

.btn-small {
    height: 30px;
    width: 100px;
    font-size: 1rem;
}

.btn-mid {
    height: 40px;
    width: 130px;
    font-size: 1.2rem;
}

.main-feed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85vh;
    padding-left: 14rem;
    padding-right: 14rem;
}

.feed-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile {
    /* display: flex; */
    width: 300px;
    height: 400px;
    overflow: hidden;
    border: #2D2B2B 8px solid;
    border-radius: 14px;
}

.profile-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: -1;
}

.profile-info {
    background-color: #2D2B2B;
    width: 240px;
    position: relative;
    bottom: 100px;
    padding-left: 1rem;
}

.profile-name {
    font-size: 28px;
}

.profile-bio {
    font-size: 18px;
}

.chat {
    display: flex;
    height: 60%;
    width: 24vw;
    overflow: hidden;
    flex-direction: column;
    gap: 15px;
    justify-content: flex-start;
}

.chat-msg {
    background-color: #2D2B2B;
    width: fit-content;
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 7px;
}

.your-msg {
    align-self: flex-start;
}

.their-msg {
    align-self: flex-end;
}

.sign-up-form {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.sign-up-form-heading {
    font-size: 32px;
}

.sign-up-form-input-field {
    width: 400px;
    height: 30px;
    padding-left: 20px;
    border-radius: 15px;
    border: none;
}

.sign-up-form-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.sign-up-form-submit {
    display: flex;
    flex-direction: column;
    gap: 15px;
}