*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --blue: #3545EE;
    --black: #1B1B1B;
    --white: /*#F5F5F5*/ #ffffff;
    --purple: /*#8B6BFD*/ #4C95C7;
}

body{
    /*font-family: 'DM Sans', sans-serif;*/
    font-family: 'Work Sans', sans-serif;
    background-color: var(--purple);
    color: var(--white);
}

.container{
    width: 85%;
    max-width: 62rem;
    margin: 0 auto;
}

.landing__content__wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.landing__title{
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    text-align: center;
}


.landing__location{
    font-size: 1.05rem;
    margin: 1rem 0;
}

.landing__desc, .landing__channel__tagline, .landing__recent__video{
    font-size: 1.25rem;
    text-align: center;
}


.landing__channel__tagline{
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.landing__recent__video{
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}


.landing__photo{
    background-image: url('/assets/yezzi.jpg');
    background-size: cover;
    background-position: center;
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-bottom: 1rem;
}

.landing__social__icons__wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.landing__social__icons{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.landing__social__icons li{
    list-style: none;
    margin: 0 10px;
}

.landing__social__icons li > a{
    text-decoration: none;
    color: var(--white);
    font-size: 1.75rem;
    stroke: var(--black);
    stroke-width: 0.5;
}

.link__photo{
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.link__cards{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}

.link__cards a {
    text-decoration: none;
    color: var(--white);
}

.link__card__with__image{
    padding: 0.75rem;
    background-color: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0.75rem 0;
    border: 1.5px solid var(--white);
    text-align: center;
    border-radius: 0.75rem;
}

.links__button__wrapper{
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
}

.links__button{
    margin: 0.75rem 0;
    text-decoration: none;
    padding: 0.70rem;
    color: var(--white);
    background-color: var(--black);
    border-radius: 0.25rem;
    text-align: center;
    display: inline-block;
    margin-right: 0.75rem;
    border: 1.5px solid var(--white);
}

footer{
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.footer__text a{
    color: var(--white);
}

.footer__text a:visited{
    color: var(--white);
}

@media only screen and (max-width: 768px){
    .landing__youtube__container img{
        width: 350px;
        height: 350px;
        object-fit: cover;
    }    
}

