
@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    font-family: 'Ubuntu';
    text-align: center;
}

body {
    /*background: rgb(255, 225, 225);
    background: linear-gradient(0deg, rgba(255, 225, 225, 1) 0%, rgba(255, 255, 255, 1) 100%);*/
    width: 100vw;
    overflow-x: hidden;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

h1{
   margin-top : 30px;
}
        
.header {
            padding: 10px 0;
            text-align: center;
        }

        .intro {
            width: 100%;
            padding: 40px 0;
            text-align: center;
        }

        .intro img {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            margin-bottom: 20px;
            border : 5px solid #A03232;
        }

        .section {
            width: 80%;
            margin: 0 auto;
            padding: 20px 0;
        }

        .section h2 {
            color: #333;
            margin-bottom: 20px;
        }

        .section p {
            margin-bottom: 20px;
            font-size: 1.2em;
            line-height: 1.6em;
        }

        .section:not(:last-child) {
            border-bottom: 1px solid #ddd;
        }