.Image {
    position:absolute;
	top: 20px;
	right:20px;
}

html body {
    margin: 10px;
    height: 100%;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: skyblue;
    border: 5px solid white;
    padding-left: 8px;
    padding-right: 8px;
    color: white;
    animation: fadein 3s forwards;
    text-align: center;
}

header {
    text-align: center;
    background-color: skyblue;
    font-family: Georgia, 'Times New Roman', Times, serif;
    height: 150px;
    border-bottom: 2px dotted white;
}

.title {
    text-align: center;
    font-size: 2.5em;
    color: white;
    text-decoration: underline;
}

.index {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.index-item {
    margin-right: 20px;
    border: 1px solid white;
}

.index-item a {
    text-decoration: none;
    color: white;
    background-color: skyblue;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid skyblue;
    transition: background-color 0.3s, color 0.3s;
}

.index-item a:hover {
    background-color: #00c3ff;
    color: white;
}

h2 {
    margin: 0 auto;
    border-bottom: 2px solid white;
    border-left: 5px solid white;
    border-spacing: 10px;
    width: fit-content;
    text-align: center;
    display: flex;
}

h3 {
    text-decoration: underline;
}

.affiliation {
    list-style: none;
    padding: 0;
    display: flex;
    width: fit-content;
    margin: auto;
}

.affiliation-item a {
    text-decoration: none;
    color: white;
    background-color: skyblue;
    padding: 10px 10px;
}

.skills {
    width: fit-content;
    margin: auto;
    line-height: 2.0;
}

.hobby-item {
    list-style: none;
}

div {
    border-bottom: 2px dotted white;
}

@keyframes fadein {
    0% {opacity: 0;}
    100%{opacity: 1;}
}

table {
    margin: auto;
}

#About {
    padding-top: 15px;
    padding-bottom: 15px;
}

#History {
    padding-top: 15px;
    padding-bottom: 15px;
}

#Others {
    padding-top: 15px;
    padding-bottom: 15px;
}
