* {
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

body {
    min-height: 100vh;
    background: #242323;
    justify-content: center;
    overflow-x: hidden;
}

header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #242323;
    z-index: 100;
}

header .logo {
    position: absolute;
    width: 16px;
    transform: scale(0.3);
    border-radius: 50%;
    left: 0;
    z-index: 1000;
    transition: 1s ease-out;
}

header .logo :hover {
    opacity: 50%;
}

header ul {
    position: absolute;
    display: flex;
    right: 0px;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    font-weight: bold;
    z-index: 1000;
    font-size: 20px;
    margin-left: 200px;
}

header ul li a {
    text-decoration: none;
    padding: 6px 15px;
    color: #fff;
    border-radius: 10px;
    margin-left: 20px;
    z-index: 1000;
    transition: 0.5s;
}

header ul li a:hover {
    background: #fff;
    color: #000000;
}

#cover a {
    display: block;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    height: 100px;
    top: 40px;
    transform: scale(0.7);
    left: 80px;
    transition: 2s ease-in;
}

#cover a:hover {
    transform: scale(0.8);
}

#myinfo {
    position: absolute;
    display: block;
    top: 700px;
    color: white;
    left: 200px;
    justify-content: center;
    align-items: center;
}

#myinfo h2 {
    font-size: 60px;
    margin-bottom: 20px;
    text-align: center;
    left: -48px;
}

#myinfo img {
    position: absolute;
    width: 40%;
    text-align: center;
}

#myinfo p {
    font-size: 17px;
    left: -48px;
    text-align: center;
    margin-bottom: 40px;
}