body {
    font-family: Arial, sans-serif;
    background-image: url(img/sfprof.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #4b3c59;
    margin: 0;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

header {
    background-color: #d8c4f5;
    text-align: center;
    padding: 5px;
    border-radius: 0 0 20px 20px;
}

.main-layout {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.sidebar {
    width: 25%;
    background-color: #f9f1ff;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar ul li {
    margin-bottom: 10px;
}


.sidebar a {
    color: #4b3c59;
    text-decoration: none;
}

.sidebar a:hover {
    text-decoration: underline;
}

.content {
    width: 75%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
}

.card {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.centro {
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.frase-centro {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-style: italic;
    margin: 0 auto;
    max-width: 600px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

footer {
    background-color: #d8c4f5;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    margin: 0;
}

a {
    color: #7b5ea1;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
    color: #7b5ea1;

}

.bottone {
    background-color: #7b5ea1;
    color: #f9f1ff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
    display: inline-block;
}

.bottone:hover {
    background-color: #7b5ea156;
    color: #7b5ea1;
}