/* 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;
}

* {
    margin: 0;
    padding: 0;
}

body {
    text-align: center;
}
/* 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";
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    background-color: #110053;
    height: 70px;
    width: 100%;
    align-items: center;
    position: fixed;

}
.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: 600px;
}

.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);
}
.header-media-title:hover {
    font-size: 52px;
    text-shadow: 3px 3px 3px black;
    color: var(--color-primary);
}


/* Content section  */
.main-container {  
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    background-color: #FF7A05;
}

.main-item {
    flex: 1 1 450px;
    max-width: 600px;
    margin: 20px 20px;
}
.main-item-img {
    flex: 1 1 450px;
    width: 100%;
    max-width: 400px;
    height: auto;
    border: 15px solid #00d9ff;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0.1rem 2px 20px rgba(0, 0, 0, 0.536) ;
}

.main-description {
    flex: 1 1 100%;
    line-height: 30px;
    max-width: 100%;
    font-size: 18px;
    text-align: center;
    background-color: #00d9ff;
    padding: 3rem;
    /* border-radius: 5px 5px 5px 5px; */
    margin: 20px;
    border: 15px solid rgb(255, 123, 0);
    box-shadow: 0.1rem 2px 20px rgba(0, 0, 0, 0.536) ;
}


/* Footer section */