* {
    margin: 0;                       /* Reseted the page and added a scroll behavior */
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {                                    /*some color for the background, min height for readibility, the font family that I will use and finally the line height */
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #74ebd5, #acb6e5);
    color: #333;
    line-height: 1.6;
    padding: 40px;
    min-height: 100vh;
}


.content {                     /* The main card, where every important thing will be */
    max-width: 850px;
    background: #ffffffdd;
    margin: 0 auto;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    border: 2px solid #ffffff70;
}


.title {                        /*Style to the title*/
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}


.image {                   /*some shadows, height and width, and margin */
    display: block;
    margin: 20px auto;
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #3498db;
    box-shadow: 0 0px 40px #3498db;
}


.titles {                        /*Style to the titles*/
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #34495e;
    border-left: 5px solid #3498db;
    padding-left: 10px;
}


.lists {                    /*style for the lists, padding and margin too*/
    list-style-type: none;
    padding-left: 0;
    margin-top: 10px;
}

.lists li {           /* adding styles to the list items*/
    padding: 8px 0;
    font-size: 16px;
    color: #555;
}


a {                          /*style for the email*/
    color: #2980b9;
    text-decoration: none;
}

a:hover {                  /*style for the email*/
    text-decoration: underline;          
}


p {           /* added style for the paragraphs tags, color, margin, some text align and max width*/
    max-width: 700px;
    text-align: justify;
    margin-top: 10px;
    font-size: 16px;
    color: #444;
}

footer{                        /*style for the footer*/
    display: flex;
    justify-content: center;
}

#section{                   
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
}
                       /* Responsivness*/
@media (max-width:430px){
    .description{
        font-size: 12px;
        text-align: left;
    }
}