/* Global section */
:root {
    /* Typography */
    font-family: 'Lexend', 'Inter', sans-serif;
    
    /* Colors */
    --color-primary: blue;
    --color-secondary: aqua;
    --color-accent: rgb(248, 199, 255);
    --color-text: rgb(66, 51, 51);
    --color-white: white;
    --color-alert: red;
    --box-shadow-default: 4px 6px black ;
}

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

body {
    text-align: center;
    padding-top: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    /* align-items: left; */
    background: linear-gradient(#110053 100px, var(--color-primary) 700px, #FF7A05 1100px);
}
/* Header section  */
.header-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    flex-wrap: wrap;

}


.header-logo a {
    color: var(--color-white);
    text-decoration: none;

}

.header-logo a:hover {
    color: red;
    font-weight: 800;
    text-shadow: 2px 2px 5px black;

}
.header-logo {
    margin-right: auto;
    margin-left: 20px;
    font-family: "Lemon";
}
.lemon {
    font-family: 'Lemon';
}
.nav-container {
    display: flex;
    justify-content: flex-start;
    background-color: #110053;
    height: 70px;
    width: 100%;
    align-items: center;
    position: fixed;
    top: 0px;

}
.nav-container {
    box-shadow: 0px 2px 2px black;
}

.nav-list {
    display: flex;
    gap: 20px;
    color: var(--color-white);
    list-style-type: none;
    margin-right: 20px;
}

.nav-item a {
    text-decoration: none;
    color: var(--color-white);
    font-family: 'Lemon';
}
.nav-item a:hover {
    color: red;
    font-weight: 800;
    text-shadow: 2px 2px 5px black;

}
.header-media-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* background-color: #3300FE; */
    min-height: 450px;
}

.header-media-main p {
    color: var(--color-white);
    font-size: 18px;
}
.header-media-title {
    font-size: 46px;
    font-weight: 900;
    text-align: center;
    color: var(--color-white);
}



/* Content section  */
.main-container {  
    display: flex;
    flex-direction: row;
    justify-content:space-evenly;
    align-items: center;
    flex-wrap: wrap;
    color: black;
    gap: 15px;
    margin: 20px 10px;
    /* background-color: #FF7A05; */
    /* background: content-box linear-gradient(blue, orange);  */
}
.main-description {
    flex: 1 1 100%;
    min-height: 100px;
    max-width: 90%;
    line-height: 2rem;
    font-size: 18px;
    text-align: center;
    background-color: white;
    align-self: center;
    color: black;
    padding: 2em;
    border-radius: 30px;
    box-shadow: var(--box-shadow-default)
}
.main-card {
    flex: 1 1 100%;
    height: 510px;
    line-height: 2rem;
    max-width: 350px;
    font-size: 18px;
    align-self: flex-start;
    text-align: center;
    border-radius: 30px;
    border: 20px solid;
    box-shadow: var(--box-shadow-default);
}

.brown-card {
    background-color: #E9D192;
    border-color: #F4D874;
}
.blue-card {
    background-color: #69D3E8;
    border-color: #A7DCD8;
}

.green-card {
    background-color: #91ED91;
    border-color: #7FBC8C;
    
}
.red-card {
    background-color: #FEA079;
    border-color: #FF6B6C;
}
.inner-border {
    flex: 1;
    height: 100%;
    border: 2px solid #504934;
    border-radius: 11px;
}


/* Footer section */
