* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #f8efff;
    --lightviolet-1: #ecd2f9;
    --lightviolet-2: #d8c0df;
    --lightyellow-1: #fff8c8;
    --lightyellow-2: #f7e0b5;
    --lightyellow-3: #e6cd99;
    --skintone: #f4d0c0;
    --orange: #d77e44;
    --pinkbrown: #c98271;
    --bole: #774438;
    --periwinkle: #cbcaff;
    --palepurple: #b092d1;
    --fadedpurple: #8769a8;
    --darkpurple: #4c455e;
}

body {
    margin: 0;
    padding: 0;
    color: var(--darkpurple);
    font-size: 14px;
}

button {
}

/* Header styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.heading {
    display: flex;
    flex-direction: column;
    position: relative;
}

.logo img {
    width: 100%;
    max-width: 170px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.heading-navigation {
    background-color: #4c455e;
    width: 100%;
    padding: -10px 0px;
    display: flex;
    flex-direction: row;
}

.navbar {
    display: flex;
    padding: 0px 10px;
    width: 100%;
    margin: auto;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0 15px;
    margin: 0;
}

nav ul li {
    list-style: none;
    padding: 15px;
}

.navbar a {
    color: #f8efff;
    text-decoration: none;
    font-family: "ADLaM Display", system-ui;
    font-size: 19px;
    padding: 15px;
}

.navbar a:hover {
    color: var(--darkpurple);
    background-color: var(--lightviolet-1);
    padding: 15px;
    transition: 0.3s ease;
}


.signin {
    font-family: "ADLaM Display", system-ui;
    background-color: var(--lightviolet-2);
    color: var(--darkpurple);
    border: none;
    padding: 5px 15px;
    cursor: pointer;
    font-size: 19px;
    margin-left: auto;
}


/* Main banner ********************************************************/

.main-banner img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.bee img {
    width: 100px;
    position: absolute;
    left: 11px;
    top: 100px;
    rotate: 355deg;
}


/* Content sections *****************************************************/

#content {
    align-content: center;
}


.content {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    gap: 20px;
}

.trending, .top-gachatubers {
    padding: 15px;
    width: 45%;
    text-align: center;
}

.top-trend-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 0px 0px 0 40px;

}

.gachatuber img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}


/* Trends side ***********************************************************/

.trending {
    display: flex;
}

.trending img {
    max-width: 1000px;
    border-radius: 10px;

}

.top-trend-info h2 {
    font-family: "ADLaM Display", system-ui;
    color: var(--fadedpurple);
    font-size: 32px;
    font-weight: 500;
    text-align: left;

}

.top-trend-info p {
    font-family: "Montserrat", sans-serif;
    color: var(--darkpurple);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    padding: 20px 0;
    text-align: justify;
}


.learn-more {
    position: relative;
    margin-left: -15px;
}

.learn-more img {
    padding: 8px 16px;
    cursor: pointer;
    margin-top: 10px;
    width: 130px;
    font-weight: bold;
    background-color: none;
}

.top-button:hover {
    transition: 0.3s ease;
    opacity: 1;
}

.top-button {
    position: absolute;
    width: 250px;
    left: 0;
    top: 0;
    opacity: 0;
}


/* Top Gachatubers side ********************************************/
.top-gachatubers .gachatuber {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.top-gachatubers .gachatuber img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.top-gachatubers {
    text-align: left;
}

.top-gachatubers h2 {
    font-family: "ADLaM Display", system-ui;
    color: var(--fadedpurple);
    font-size: 32px;
    font-weight: 500;
}

.top-gachatubers p {
    font-family: "Montserrat", sans-serif;
    color: var(--darkpurple);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.gachatuber {
    padding: 10px 0;
}

.gachatubers {
    padding: 20px 0;
}

.gachatuber-info {
    padding: 20px 10px;
}

.gachatuber-info strong {
    font-style: italic;
}


/* Footer *********************************************************************/
footer {
    background-color: var(--darkpurple);
    color: #fff;
    padding: 20px 0;
    font-family: "Montserrat", sans-serif;
    width: 100%;
}

.footing {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.footer-logo {
    width: 340px;
    text-align: left;
    align-content: center;
    margin-left: auto;
}

.footer-logo img {
    width: 300px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 14px;
    margin-top: 10px;
    width: 340px;
    line-height: 1.4;
    color: var(--white);
    text-align: justify;
}

.footer-nav {
    display: flex;
    flex-direction: row;
    align-content: center;
    margin-right: auto;
}

.footer-nav1 nav ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
    list-style: none;
    width: 30%;
    text-align: left;
    align-content: center;
    margin-right: auto;
    margin-left: 5px;
}

.footer-nav1 nav ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    cursor: pointer;
}

.footer-nav2 {
    margin-right: auto;
}

.footer-nav2 nav ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin-right: auto;
}

.footer-nav2 nav ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.footer-nav-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

/* Hover effect for the icons */
.footer-nav1 nav ul li:hover .footer-nav-icon {
    transform: scale(1.3);
}

.footer-nav1 nav ul li span {
    font-size: 19px;
    font-family: "ADLaM Display", system-ui;
    color: var(--white);
}

.footer-nav2 nav ul li:hover .footer-nav-icon {
    transform: scale(1.3);
}

.footer-nav2 nav ul li span {
    font-size: 19px;
    font-family: "ADLaM Display", system-ui;
    color: var(--white);
}


/* Copyright section */
.subfooting {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--periwinkle);
    margin-top: 10px;
    font-size: 12px;
    color: var(--white);
}


/* ABOUT page **********************************************************************************/

.about-title {
    height: 400px;
    margin: 30px 0;
    text-align: center;
    position: relative;
}

.about-title img {
    width: 900px;
}

.story-title {
    background-color: var(--lightviolet-1);
    width: 100%;
    height: 350px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.story-title h2 {
    font-family: "ADLaM Display", system-ui;
    color: var(--fadedpurple);
    font-size: 56px;
    font-weight: 500;
    margin-right: auto;
    text-transform: uppercase;

}

.story-title img {
    width: 550px;
    margin-left: auto;
    border-radius: 5px;
    padding: 20px 30px;
    position: relative;
    border-radius: 30px;
}

.story-title-text {
    align-self: center;
}


.title-heading {
    position: absolute;
    text-align: left;
    top: 50%;
    left: 50%;
    translate: -50% -20%;

}

.title-heading h2 {
    font-family: "Courier Prime", monospace;
    font-size: 64px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    font-style: italic;
    text-shadow: 5px 5px 0px var(--darkpurple);


}

.title-heading p {
    font-family: "Courier Prime", monospace;
    font-size: 19px;
    font-weight: 400;
    width: 800px;
    color: var(--darkpurple);
    flex-shrink: 20;
    text-align: justify;
}


.story-info {
    background-color: var(--white);
    padding: 65px 50px;
}

.story-info p {
    font-family: "Montserrat", sans-serif;
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;

}

.story-info strong {
    font-family: "ADLaM Display", system-ui;
    color: var(--fadedpurple);
    font-size: 32px;
    font-weight: 500;
}


/* HISTORY page ********************************************************************************/

.history-page {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;

}


.timeline-wire {
    padding: 100px 130px;
    border-right: 10px solid;
    border-color: var(--fadedpurple);

}


.timeline-entry {
    display: flex;
    gap: 20px;
    position: relative;
    width: 900;
    margin: 60px 0;
    align-items: center;

}

.timeline-image {
    position: relative;
    z-index: 10;

}

.timeline-peg {
    position: relative;
    z-index: 1;
}


.timeline-image img {
    width: 300px;
    border-radius: 10px;
    justify-content: space-around;
}

.timeline-peg img {
    position: absolute;
    width: 150px;
    top: 50%;
    left: -39px;
}

.timeline-info {
    align-self: flex-start;

}


.timeline-info h2 {
    font-family: "ADLaM Display", system-ui;
    font-size: 52px;
    font-weight: 500;
    color: var(--fadedpurple);
}

.timeline-info span {
    font-weight: 400;
    color: var(--darkpurple);
    font-family: "Courier Prime", monospace;
    font-style: italic;
    font-size: 28px;
    margin: 30px 0 0 0; 
}


.timeline-info p {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--darkpurple);
    width: 990px;
    margin-bottom: 35px;
    text-align: justify;

   
}




/* GOOD VS. BAD page ********************************************************************************/

.gvb-content {
    background-color: var(--white);    
}

.gvb-comparison {
    display: flex;
    justify-content: space-around;
    padding-bottom: 100px;
    gap: 70px;
    margin-left: 60px;
}


.gvb-image img {
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    object-fit: cover;

}


.gvb-side h2 {
    font-family: "ADLaM Display", system-ui;
    font-size: 52px;
    font-weight: 500;
    color: var(--darkpurple);
    opacity: 0%;

}


.gvb-side ul {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    width: 800px;
}


.gvb-side li {
    padding-bottom: 20px;
    width: 750px;
    justify-content: start;
    text-align: justify;


}



/* SHOUTOUTS page ********************************************************************************/

.highlight {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.highlight-image {
    width: 100%;
}

.highlight-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    position: relative;
}

.highlight-text {
    position: absolute;
    top: 770px;
    flex: 2;
    width: 650px;
    height: 330px;
    background: var(--lightviolet-1);
    padding: 30px 40px;
    border-right-radius: 10px;
}


.highlight-text h2 {
    font-family: "ADLaM Display", system-ui;
    font-size: 52px;
    font-weight: 500;
    color: var(--fadedpurple);
}


.highlight-text span {
    font-family: "Montserrat", sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--darkpurple);
    font-style: italic;   
    padding-top: 10px; 
}


.highlight-text p {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--darkpurple);
    padding: 10px 0 0 0;
    text-align: justify;   
}


.shoutouts-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.shoutout-card {
    background: var(--white);
    width: 370px;
    padding: 10px;
    border-radius: 10px;
    border: 5px solid #b092d1;
    text-align: center;
}

.card-text span {
    font-family: "Montserrat", sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--darkpurple);
    font-style: italic;

}

.card-text p {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--darkpurple);
    padding: 20px 0;
    text-align: justify;
}

.card-text {
    text-align: left;
}

.card-image img {
    display: flex;
    justify-content: space-around;
    width: 340px;
    height: 340px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.card-rating {
    display: flex;
    justify-content: stretch;

}

.rating-flower img {
    width: 80px;
    height: 60px;
    padding-right: 20px;
}



.card-rating p {
    font-family: "Montserrat", sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--darkpurple);
    margin-right: auto;
}

        
.pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 60px 0;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    font-weight: bold;
    color: black;
    font-family: "Montserrat", sans-serif;
    font-size: 19px;
    font-weight: 700;
}
        
.pagination .active {
    width: 50px;
    height: 50px;
    background-color: var(--lightviolet-1);
    color: var(--fadedpurple);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.pagination .arrow img {
    width: 30px;
    height: 30px;
}


/* TRENDS page ********************************************************************************/

.trends {
    position: relative;
}

.divider-pencil img {
    width: 200px;
    position: absolute;
    top: -6%;
    left: 0%;

}


.trend-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px 0;
}

.trend-item {
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
}

.trend-info {
    width: 500px;
    margin-left: auto;
    flex-shrink: 0;
}

.trend-image img {
    width: 350px;
    height: 470px;
    border-radius: 10px;
    margin-left: 30px;
}

.divider {
    border: none;
    border-radius: 60px;
    height: 3px;
    width: 1900px;
    background: var(--darkpurple);
    margin-right: auto;
    margin-left: auto;
}


.trend-item h2 {
    font-family: "ADLaM Display", system-ui;
    font-size: 32px;
    font-weight: 500;
    color: var(--fadedpurple);
    padding-bottom: 5px;


}



.trend-item span {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--darkpurple);
    font-style: italic;
    padding-top: 30px;    
}


.trend-item p {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--darkpurple);
    padding: 10px 0;
    text-align: justify;
}





/* CONTACTS page ********************************************************************************/

.get-in-touch {
    background-color: var(--lightviolet-1);
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    height: 400px;
    gap: 70px;
}

.get-in-touch-info {
    margin-left: auto;
    align-self: center;

}

.get-in-touch-image {
    margin-right: auto;
}


.get-in-touch-info h2 {
    font-family: "ADLaM Display", system-ui;
    color: var(--fadedpurple);
    font-size: 32px;
    font-weight: 500;
    margin-right: auto;
    margin-bottom: 15px;

}

.get-in-touch-info span {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--darkpurple);
    font-style: italic;

}

.get-in-touch-info p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    width: 800px;
    color: var(--darkpurple);
    margin-top: 10px;
    width: 800px;
    text-align: justify;
}

.get-in-touch-info img {
    width: 150px;
    margin-top: 30px;
}

.get-in-touch-image img {
    width: 600px;
    margin-left: auto;
    display: flex;
    margin-top: 30px;
}

.contact-content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}


.contact-container li span {
    font-family: "Montserrat", sans-serif;
    width: 500px;
    font-size: 18px;
    font-weight: 700;
    color: var(--darkpurple);
    font-style: italic;
    padding-left: 20px;
    justify-content: start;

}

.contact-icon {
    width: 50px;
}


.contact-container {
    background-color: var(--lightviolet-1);
    width: 700px;
    height: 500px;
    margin: 50px;
}

.contact-container h2 {
    background-color: var(--fadedpurple);
    font-weight: 500;
    color: var(--white);
    font-family: "Courier Prime", monospace;
    font-style: italic;
    font-size: 28px;
    padding: 10px;

}


.contact-container h3 {
    font-family: "Montserrat", sans-serif;
    width: 500px;
    font-size: 18px;
    font-weight: 700;
    color: var(--darkpurple);
    padding: 10px 0;

}

.contact-container ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 40px;
    margin-left: 40px;
}

.contact-container li {
    display: flex;
    padding-bottom: 50px;
    align-items: center;
    gap: 20px;
}

.contact-form {
    padding: 50px;
}

.form-placeholder {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--darkpurple);
}

form {
    width: 500px;
    margin-top: -30px;
}

.basic-info {
    display: flex;
    flex-wrap: wrap;

}

input[type="submit"] {
    background-color: #f0d2fb;
    padding: 8px 16px;
    color: var(--fadedpurple);
    font-family: "ADLaM Display", system-ui;
    border: 4px solid;
    border-color: #b488df;
    border-radius: 8px;
    margin: 6px 0;

}

textarea {
    background-color: var(--white);
    padding: 8px 16px;
    color: var(--fadedpurple);
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    border: 2px solid;
    border-color: var(--fadedpurple);
    border-radius: 5px;
    margin: 6px 0;
    width: 500px;

}

input[type="text"] {
    background-color: var(--white);
    padding: 8px 16px;
    color: var(--darkpurple);
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    border: 2px solid;
    border-color: var(--fadedpurple);
    border-radius: 5px;
    margin: 7px;  
    display: flex;  
}

input[type="email"] {
    background-color: var(--white);
    padding: 8px 16px;
    color: var(--fadedpurple);
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    border: 2px solid;
    border-color: var(--fadedpurple);
    border-radius: 5px;
    margin: 7px;  
    display: flex;  
}

label {
    color: var(--darkpurple);
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    border-radius: 5px;
    display: flex; 
    margin-bottom: -10px; 
    margin-right: 10px;
}

input[type="text"]:hover {
    border-color: var(--lightyellow-2);
}

input[type="email"]:hover {
    border-color: var(--lightyellow-2);
}














/* Media Queries - Mobile ******************************************************/

@media only screen and (max-width: 360px) {


    /* Heading ************************************************************/

    .heading {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo img {
        width: 100px;
    }

    .bee img {
        width: 70px;
        top: 59px;
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: left;
        padding: 0;
    }

    .nav li {
        font-size: 9px;
    }

    .navbar li {
        padding: 10px 0;
    }

    .navbar a:hover {
        padding: 10px 15px;
    }

    .signin {
        padding: -2px 10px;
        font-size: 12px;
        
    }

    .signin a {
        height: 225px;
        align-items: center;
    }

    /* Main banner ************************************************************/
    .main-banner img {
        width: 100%;
        height: 600px;
    }

    /* Content section ********************************************************/

    .content {
        padding: 5px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .trending {
        width: 360px;
        display: flex;
        flex-direction: row;
        padding-top: 40px;
        flex-shrink: 0;
        flex-wrap: wrap;
        
    }

    .trending {
        flex-direction: row;
        padding-right: 0;
    }

    .top-trend-info {
        width: 230px;
        padding-top: 20px;
        padding-left: 3px;
    }

    .top-trend-info p {
        font-size: 13px;
        width: 300px;
    }

    .top-trend-info h2 {
        width: 500px;
    }


    .top-gachatubers {
        flex-direction: column;
        text-align: center;
        width: 350px;
        flex-shrink: 0;
        padding: 0;
    }

    .trend-img img {
        width: 300px;
        display: flex;
        align-items: start;

    }

    .gachatuber {
        flex-direction: column;
        width: 340px;
        align-items: center;
    }

    .gachatuber img {
        width: 100%;
        height: auto;
    }

    .learn-more img {
        display: flex;
        align-items: left;
    }


    .trend-info h2,
    .top-gachatubers h2 {
        font-size: 28px;
        text-align: left;
        padding-left: 20px;
    }

    .gachatuber-info {
        width: 300px;
    }


    /* Footer adjustments *****************************************************/
    .footing {
        max-width: 360px;
        flex-direction: column;
        align-content: center;
        text-align: center;
    }


    .footer-logo img {
        width: 250px;
        padding: 10px 20px;
        margin-bottom: 0;
        margin-right: auto;
        margin-left: auto;
    }

    .footer-logo p {
        font-size: 12px;
        width: 300px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
        
    }

    .footer-nav {
        max-width: 100px;
        margin-left: 0;
        margin-right: 0;
        padding-top: 10px;
        font-size: 16px;
    }

    .footer-nav1,
    .footer-nav2 {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .footer-nav1 span {
        font-size: 16px;
    }

    .footer-nav1 nav ul {
        margin-right: 0;
        padding-left: 0;
    }

    .footer-nav2 {
        margin-right: 0;
    }

    .footer-nav2 nav ul li {
        padding-left: 0;
    }

    .footer-nav-icon {
        width: 30px;
        height: 30px;

    }

    .subfooting p {
        font-size: 12px;
        width: 230px;
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }




    /* page titles ************************************************************/

    .about-title img {
        width: 350px;
        height: 360px;
    }


    .title-heading {
        left: 170px;
        top: 100px;

    }

    .title-heading p {
        width: 300px;

    }

    /* ABOUT ************************************************************/    


    .about-title img {
        left: -10px;
        top: 70px;

    }

    .story-title {
        height: 480px;
        flex-direction: column;
        justify-content: center;
        gap: 70px;
    }

    .story-title-img {
        margin-left: auto;
        margin-right: auto;     
    }

    .story-title img {
        width: 320px;
        flex-direction: column;
        padding: 0;
        border-radius: 0;
    }

    .story-title h2 {
        text-align: center;
        font-size: 52px;
    }

    .story-info {
        width: 360px;
        height: 690px;
        padding: 40px;
    }

    .story-info p {
        width: 280px;
    }


    /* HISTORY ************************************************************/    

    .timeline-wire {
        padding: 100px 1px;
    }

    .timeline-entry {
        flex-direction: column;
    }


    .timeline-info {
        width: 300px;
    }

    .timeline-info p {
        width: 300px;
    }

    .timeline-peg {
        left: -150px;
        top: 200px;
    }



    /* GVB ************************************************************/

    .gvb-comparison {
        flex-direction: column;
        margin-left: 0;
    }

    .gvb-side {
        margin-left: 30px;
        margin-top: 50px;
    }

    .gvb-side ul {
        width: 300px;
    }

    .gvb-side li {
        width: 300px;
    }

    .gvb-side h2 {
        font-family: "ADLaM Display", system-ui;
        font-size: 52px;
        font-weight: 500;
        color: var(--darkpurple);
        opacity: 100%;
        margin-bottom: 20px;
    }





    /* SHOUTOUTS ************************************************************/  

    
    .highlight-image img {
        height: 800px;
    }


    .highlight-text {
        top: 1000px;
        width: 330px;
        height: 510px;
    }

    .highlight-text span {
        font-size: 18px;
    }


    .shoutouts-grid {
        flex-direction: column;
    }

    .shoutout-card {
        margin-left: auto;
        margin-right: auto;
        width: 330px;
    }

    .card-image img {
        width: 300px;
        height: 300px;
    }



    /* TRENDS ************************************************************/   

    .trend-row {
        flex-direction: column;
        max-width: 360px;
    }

    .divider-pencil img {
        top: -1.5%;
    }

    .trend-item {
        flex-direction: column-reverse;
        padding-left: 0;
        width: 310px;
    }

    .trend-image img {
        width: 300px;
        height: 430px;
        margin-left: 0;
        margin-bottom: 20px;
    }

    .trend-info {
        width: 300px;
    }


    /* CONTACT ************************************************************/   


    .get-in-touch {
        flex-direction: column;
        height: 850px;
        gap: 10px;
    }

    .get-in-touch-info {
        width: 300px;
        margin-left: 0;
    }

    .get-in-touch-info h2 {
        width: 250px;
        padding-top: 30px;
    }

    .get-in-touch-info p {
        width: 300px;
    }

    .get-in-touch-image {
        margin-left: auto;
    }         

    .get-in-touch-image img {
        width: 330px;
        padding-bottom: 50px;
    }

    .contact-content {
        flex-direction: column;
    }
  
    .contact-container {
        width: 330px;
        height: 620px;
        margin: 30px 10px;
        align-self: center;
    }

    .contact-container ul {
        padding: 30px 10px;
        flex-direction: column;
        margin-left: 0;
    }

    .contact-container li {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-container li span {
        width: 300px;
        align-items: center;
        text-align: center;
        padding: 0;
    }

    .contact-icon {
        width: 40px;
    }

    .contact-form {
        width: 300px;
        padding-left: 20px;
    }

    form {
        width: 300px;
    }

    textarea {
        width: 290px;
    }





























}

