/* Font Styles */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');


body{
    font-family: 'Rubik', sans-serif;
    justify-content: center;
    background-image: url(../images/about/background.png);
}

/* Key Elements */

a {
    text-decoration: none;
    color: #21201E;
    transition: 0.3s ease-in-out;
}

h1 {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 100px;
    color: white;
}

h2 {
    font-family: 'Rubik', sans-serif;
    font-weight: 800;
    font-size: 50px;
    text-transform: uppercase;
    color: black;
}

h3 {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 30px;
    color: black;
}

.bodyCopy {
    font-size: 20px;
    line-height: 30px;
}

.btn:hover {
    transition: .3s ease-in-out;
}

.homeButton {
    width: 150px;
    height: auto;

    background-color: #ffc349;
    border-radius: 30px;

    padding: 20px;
    text-align: center;
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: black; 
}

.homeButton:hover {
    background-color: #000000;
    color: white; 
}

strong {
    font-weight: 800;
    color: red;
}



/* ****** Header ****** */
.header {
    width: 100%;
}

.headerContents{
    width: 100%;
    display: flex;
    justify-content: space-around;
    position: fixed;
    z-index: 1000;
}

.menu-list {
    display: flex;
    gap: 20px;
    margin-top: 52px;
}

.menu-item a:hover {
    color:red;
    font-size: 18px;
    font-weight: 500;
    transition: .1s ease-in;
}

.jlo-logo {
    height: 120px;
    width: auto;
}

.social-media {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-media a:hover {
    color:red;
    font-size: 18px;
    font-weight: 500;
    transition: .1s ease-in;
}

.hicon {
    height: 22px;
    width: 22px;
}

  /* ***** END OF HEADER ***** */

/* ***** ABOUT COPY ***** */
.aboutCont {
    width: 100%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

 .aboutHead {
    text-align: center;
    text-shadow: 0px 0px 100px black;
    margin-top: 200px;
}

.profileWrap {
    width: 50%;
    background-color: white;
    padding: 50px;
    margin-top: 100px;
}

  /* ***** END OF ABOUT COPY ***** */

  /* ***** FOOTER ***** */

.footerSec {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;

    padding: 10px 0px 10px 0px;
    margin-top: 100px;
    width: 100%;
    bottom: 0;

    background-image: url("../images/footer.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.socialMediaList {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3vw;
}

.socialMediaList a:hover {
    display: flex;
    gap: 3vw;
    color: red;
}