body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e6e6e6;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 960px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

header {
    background-color: #6a0dad;
    color: white;
    padding: 20px;
    border-radius: 8px 8px 0 0;
}

.header-content {
    display: flex;
    align-items: center;
}

.photo {
    flex: 1;
}

.photo img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
}

.header-info {
    flex: 3;
    padding-left: 20px;
}

.header-info h1 {
    font-size: 2em;
    margin: 0;
}

.header-info p {
    margin: 0;
}

.header-info a {
    color: white;
    text-decoration: underline;
}

.name {
    font-family: 'Doto', cursive;
}

section {
    margin: 20px 0;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    background-color: #e0e0e0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

h2 {
    color: #6a0dad;
    transition: transform 0.3s ease;
    display: inline-block;
    transform-origin: left center;
}

section:hover h2 {
    transform: scale(1.1);
}

.skills-section {
    display: flex;
    justify-content: space-between;
}

.primary-skills, .secondary-skills, .tertiary-skills {
    flex: 1;
    margin: 0 10px;
}

.primary-skills h3 {
    font-weight: bold;
}

.secondary-skills h3 {
    font-weight: 600;
}

.tertiary-skills h3 {
    font-weight: 400;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 10px 0;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #6a0dad;
    color: white;
    border-radius: 0 0 8px 8px;
}