* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: "Faculty Glyphic", sans-serif;
    font-weight: 400;
    font-style: normal;
}
 
ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--Brand-Color-001);
}

#sectionHeader {
    display: flex;
    margin: 5px 0;
    padding: 5px;
    width: 100%;
    border-radius: 16px;
    border: solid 1px black;
    text-align: center;
    justify-content: center;
    background-color: #f4f4f4;
    font-size: 22px;
}
#downloadBtn {
    margin-top: 3px;
    border-radius: 4px;
    padding: 6px;
    background-color: rgba(255, 222, 173, 0);
    color: var(--Brand-Color-001);
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: all ease-in-out 300ms;
}
#downloadBtn:hover {
    background-color: var(--Brand-Color-001);
    color: var(--Brand-Color-003);

}

.greenLine {
    position: relative;
    width: 100vw;
    background-color: var(--Brand-Color-001);
}

/* *** START Of HEADER */

header {
    margin-top: 2px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 100%;
    color: var(--Brand-Color-001);
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}

.HeaderSection {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.HS01 {
    max-width: 400px;
}


.Logo {
    width: 100%;
}

.HS02 {

}

.HS02 h1 {
    font-size: 42px;
}

.HS03 {
    width: 100vw;
    font-size: 22px;

}
/* *** END Of HEADER */

/* *** START Of The BODY */

body {
    display: flex;
    flex-direction: column;
    padding: 8px;
    margin: auto;
    border: 15px solid var(--Brand-Color-003);
    border-radius: 16px; 
    max-width: 2000px;
}

/* *** END Of The BODY */

/* *** START Of ABOUT */
#AboutMe {
    margin-top: 4px;
    margin-bottom: 16px;
    font-size: 20px;
}

#AboutMe p {
    margin-bottom: 6px;
}

/* *** START Of SKILLS */

#Skills {
    margin: 16px 0;
    color: black;
}

.skills-grid {
    margin-top: 22px;
    margin-bottom: 12px;
    padding: 4px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 4fr));
    gap: 20px;
    border: solid 1px rgba(36, 36, 36, 0.5);
    border-radius: 15px;


}

.skill-card {
    display: flex;
    background-color: #f4f4f4;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out 350ms;
    cursor: cell;
    text-transform:uppercase;
    border-radius: 8px;
}

.skill-card:hover {
    background-color: #bbb9b9a9;

}

.Programing
{
    color: var(--Brand-Color-002);
}

.Advertising
{
    color: var(--Brand-Color-002);
}

.Design
{
    color: var(--Brand-Color-002);
}

.VideoDesign 
{
    color: var(--Brand-Color-002);
}

.SkillTitle {
    background-color: var(--Brand-Color-002);
    color: var(--Brand-Color-003);
}

.OtherSkills 
{
    color: var(--Brand-Color-002);
}

/* *** START Of TESTIMONIAL */

/* Main */
#Testimonials_Section {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    
}
/* Title */
.Testimonial_Title {
    width: 100%;
}

/* This is all of the Testimonials & not going to be a slider */
 .Testimonials_Slider {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/* The Testimonial */
.Testimonial { 
    display: flex;
    flex-direction: column;
    margin: 18px;
    padding: 18px;
    width: 400px;
    min-height: 220px;
    background-color: #f4f4f4;
    border-radius: 8px;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-size: 18px;
}

/* Review By */
cite {
    width: 100%;
}

/* *** END Of testimonial */


/* *** Start Of Design proff */
#DesignProff_Section {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 5px;
    border-radius: 15px;
    background-color: #e9ecef;
}
.image-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.portfolio-image {
    width: 100px;
    max-width: 150px;
    max-height: 100px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s;
}

.portfolio-image:hover {
    transform: scale(1.05);

}
/* *** Of Design proff */

/* *** START of The VideoDesignProff_Section */

#VideoDesignProff_Section {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-bottom: 15px;
    padding: 8px;
    border-radius: 15px;
    background-color: #e9ecef;
}
.VideoDesign_Title {
    width: 100%;
}
.AllVideoDesigns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-bottom: 10px;
    max-width: 100%;
}

/* *** START of The FOOTER */

footer {
    margin-top: 50px;
    color: black;
    font-size: 18px;
}
