* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

div{ -webkit-touch-callout: none;
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #0D0126;
    color: black;
    padding: 20px;
}

header {
    padding: 20px;
    border-radius: 15px;
    background-color: #59338f;
    color: #BFBFBF;
}

.profile {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.profile img {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    margin-right: 20px;
    border: 3px solid #0D0D0D;
}

.name-info {
    text-align: left;
}

h1 {
    font-size: 2.5rem;
    color: #F2F2F2;
}

h2 {
    margin-top: 20px;
    color: #F2F2F2;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    background-color: #BFBFBF;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

a {
    color: #351B59;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: start;
    margin-top: 30px;
    padding: 20px;
    border-radius: 15px;
    background-color: #BFBFBF;
    color: black;
}

#footer_notice {
    color: rgb(80, 80, 80);
    font-size: 0.8rem;
}

#footer_easter {
    color: #9c9c9c;
    font-size: 0.6rem;
}
