/* Com styles */

html {
    scroll-behavior: smooth;
}

:root {
    --dark: #000000;
    --blue: #D3F204;
    --white: #FFFFFF;
    --red: #FF0000;
    --gray: #9B9B9B;
    --white-20: rgba(0, 0, 0, 0.12);
    --gridw: 1180px;
}

body {
	margin: 0;
	padding: 0;
    font-family: "Single Day", cursive;
    font-weight: 400;
    font-style: normal;
	background: var(--blue);
	color: var(--dark);
}

a:hover {
    opacity: 0.7;
    cursor: pointer;
}

h2 {
    font-size: 64px;
    margin: 0px;
}

p {
    font-size: 24px;
    line-height: 30px;
}

p a {
    color: var(--dark);
}

.wrap {
    max-width: var(--gridw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 20px;
}

.s-bg-wh {
    background: var(--white);
    color: var(--dark);
}


/* hero */

.hero {
    padding: 50px 20px;
}

.hero-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 70px;
}

.hero-menu {
    width: 100%;
    max-width: var(--gridw);
    display: flex;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 42px;
}

.logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.menu-links {
    font-size: 26px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.menu-links a {
    color: var(--dark);
    text-decoration: none;
}

.button-buy {
    width: 150px;
    height: 60px;
    border-radius: 10px;
    background: var(--dark);
    color: var(--blue) !important;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: flex-end;
}

.hero-ca {
    cursor: pointer;
    font-size: 18px;
    line-height: 20px;
    background: var(--white-20);
    padding: 5px 10px;
    border-radius: 5px;
    word-wrap: break-word;
    word-break: break-all;
    text-align: center;
}

.hero-rh {
    width: 160px;
    height: 160px;
}

.hero-vlod {
    width: 240px;
    height: 250px;
}

.hero-content-info {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 27px;
}

.hero-content-info i {
    color: var(--red);
}

h1 {
    font-size: 140px;
    margin: 0px;
    line-height: 120px;
}

.hero-soc {
     display: flex;
     gap: 50px;
     flex-wrap: wrap;
     row-gap: 60px;
     max-width: 1000px;
}

.hero-soc-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.12);
}

.hero-soc a svg path {
    fill: #000;
}

.hero-soc-item {
    display: flex;
    align-items: center;
    font-size: 26px;
    gap: 10px;
    color: var(--dark);
    text-decoration: none;
}

/* how to buy*/

.howtobuy {
    padding: 100px 0px;
}

.howtobuy h3 {
    font-size: 40px;
    line-height: 90%;
    margin-top: 50px;
    margin-bottom: 10px;
}

.howtobuy p {
    margin-top: 0;
}

.howtobuy-content {
    grid-column-start: 2;
    grid-column-end: span 4;
}

.howtobuy img {
    grid-column-start: 7;
    grid-column-end: span 5;
    width: 100%;
    height: auto;

    position: sticky;
    top: 20px;
}

.howtobuy-links {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 22px;
    margin-top: 50px;
}

.howtobuy-links a {
    color: inherit;
    text-decoration: none;
}

.howtobuy-links-item {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 26px;
    padding: 5px 10px;
    border-radius: 8px;
    background: var(--white-20);
    width: fit-content;
}

.howtobuy-links-item img {
    width: 34px;
    height: 34px;
}

/* about */

.about {
    display: flex;
    padding: 50px 0px;
}

.about img {
    grid-column-start: 1;
    grid-column-end: span 6;
    width: 100%;
    height: auto;
}

.about-content {
    grid-column-start: 8;
    grid-column-end: span 4;
}


/* wall of memes */

.wallofmemes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 100px 0px;
}

.wallofmemes-posts {
    width: 100%;
    max-width: 480px;

    display: flex;
    flex-direction: column;
    gap: 30px;
}

.memecard {
    display: flex;
    gap: 20px;
}

.memecard-ava {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.meme-card-auth {
    font-size: 24px;
}

.memecard-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.memecard-content img {
    width: 100%;
    height: auto;
}

.memecard-content-meta {
    color: var(--gray);
    display: flex;
    justify-content: space-between;
}

.memecard-content-meta-like {
    display: flex;
    align-items: center;
}

.memecard-content-meta-like img {
    width: 24px;
    height: 24px;
}

hr {
    width: 100%;
    height: 1px;
    background: var(--gray);
    margin: 0px;
    border: none;
    opacity: 0.33;
}


/* college */

.collage {
    height: 60vh;
    background: url(images/asset-collage.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}



/* footer */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

.footer-wrap {
    width: 100%;
    max-width: var(--gridw);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    font-size: 24px;
    line-height: 30px;
}

.footer-text {
    text-align: right;
    max-width: 670px;
}

@media (max-width: 800px) {
    .footer-wrap {
        flex-direction: column;
    }
    .footer-text {
        text-align: center;
    }
}

/* media */

@media (max-width: 1200px) {
    .menu-links {
        gap: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 1070px) {

    .logo {
        font-size: 36px;
    }
    .logo img {
        width: 60px;
        height: 60px;    
    }

    .menu-links {
        gap: 30px;
    }

}

@media (max-width: 1000px) {
    .hero-menu {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

}

@media (max-width: 800px) {

    h2 {
        font-size: 56px;
    }

    .wrap {
        grid-template-columns: repeat(1, 1fr);
        padding: 20px;
    }

    .grid-adapt {
        grid-column-start: 1 !important;
        grid-column-end: span 1 !important;
    }

    .collage {
        height: 30vh;
    }

    .hero-content {
        transform: scale(0.65);
    }

    .hero-wrap {
        gap: 20px;
    }

    .about, .howtobuy, .wallofmemes {
        padding: 20px 0px;
    }
}



@media (max-width: 520px) {
    h2 {
        font-size: 48px;
    }

    .hero-content {
        transform: scale(0.45);
    }

    .wallofmemes {
        padding: 20px;
    }

    .memecard {
        gap: 10px;
    }

    .memecard-ava {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 400px) {
    .collage {
        height: 25vh;
    }
}