/* 25302262 - ANDRIES DANIEL LOUW */

body{
    background-color: var(--gray);
    font-family: 'Poppins', sans-serif;
}

h4{
    padding: 0;
    margin: 0;
}

p{
    padding: 0;
    margin: 0;
}

/* COLOR PALLETE */
:root{
    --gray: #E8E8E8;
    --navy: #232A3B;
    --purple: #AF85E7;
    --green: #D5F379;
}

/* HEADER */
.head {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

/* NAVIGATION DESIGN */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #232A3B;
    border-radius: 50px;
    height: 40px;
    width: 350px;
}

.navbar ul{
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.navbar a{
   font-size: medium;
   margin: 0px;
   padding: 2px 8px 2px;
   text-decoration: none;
   color: var(--navy);
   transition: all 0.3s ease;
}

.navbar a.active{
    background-color: var(--purple);
    border: 2px solid var(--navy);
    border-radius: 50px;
    box-shadow: 2px 2px 0px var(--navy);
    height: fit-content;
    width: fit-content;
    color: var(--gray);
}
.navbar a:active{
    box-shadow: 0px 0px ;
    transform: translateX(2px);
    transform: translateY(2px);
}

/* SOCIAL MEDIA LINKS DESIGN */
.socialMediaLinks {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.btnInstagram {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--green);
    border: 2px solid var(--navy);
    border-radius: 50%;
    box-shadow: 2px 2px 0px var(--navy);
    height: 40px;
    width: 40px;
    cursor: pointer;
}
.btnInstagram img{
    height: 30px;
    width: 30px;
    object-fit: contain;
}
.btnInstagram:active{
    box-shadow: 0px 0px ;
    transform: translateX(2px);
    transform: translateY(2px);
}

.btnX {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--purple);
    border: 2px solid var(--navy);
    border-radius: 50%;
    box-shadow: 2px 2px 0px var(--navy);
    height: 40px;
    width: 40px;
    cursor: pointer;
}
.btnX img{
    height: 30px;
    width: 30px;
    object-fit: contain;
}
.btnX:active{
    box-shadow: 0px 0px ;
    transform: translateX(2px);
    transform: translateY(2px);
}

.btnFacebook {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--green);
    border: 2px solid var(--navy);
    border-radius: 50%;
    box-shadow: 2px 2px 0px var(--navy);
    height: 40px;
    width: 40px;
    cursor: pointer;
}
.btnFacebook img{
    height: 30px;
    width: 30px;
    object-fit: contain;
}
.btnFacebook:active{
    box-shadow: 0px 0px ;
    transform: translateX(2px);
    transform: translateY(2px);
}

/* REGISTER BUTTON DESIGN */
.btnRegister {
    font-size: medium;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    justify-content: center;
    background-color: var(--gray);
    color: var(--navy);
    border-radius: 50px;
    border: 2px solid var(--navy);
    box-shadow: 2px 2px 0px var(--navy);
    cursor: pointer;
}
.btnRegister img{
    width: 25px;
    height: 25px;
    object-fit: contain;
}
.btnRegister:active{
    box-shadow: 0px 0px ;
    transform: translateX(2px);
    transform: translateY(2px);
}

/* FOOTER */
footer {
    background-color: var(--navy);
    color: var(--gray);
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footerContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footerLeft {
    text-align: left;
    margin-left: 20px;
}

.footerMidRight {
    text-align: right;
    margin-right: 20px;
}

.footerMidRight li{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footerMidRight a{
    color: var(--gray);
    text-decoration: none;
}

.footerMidRight a:hover{
    color: var(--green);
}

.footerMiddle{
    text-align: center;

}

.footerRight {
    text-align: right;
    margin-right: 20px;
}

.footerRight li{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footerRight a{
    color: var(--gray);
    text-decoration: none;
}

.footerRight a:hover{
    color: var(--green);
}