* {
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
    color: #333;
    background: #f4f4f4;
}

a {
    color: rgb(116, 5, 243);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 20px;
}

a:hover {
    color: rgb(116, 5, 243);
    text-decoration: underline;
}

main {
    padding: 20px;
    font-size: 20px;
}

.title {
    font-size: 2.5em;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 1em;
}

.email {
    color: rgb(143, 73, 255);
}

.email:hover {
    color: rgb(143, 73, 255);
    text-decoration: underline;
    cursor: pointer;
}