body {
    overflow: hidden;
    margin: 0;
    padding: 0;
    background-color: darkslategray;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}
.center {
    background-color: NavajoWhite;
    width: 400px;
    height: 180px;
    box-shadow: 5px 5px 0 2px black;
    border: 2px solid peru;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.heading {
    font-size: 30px;
    margin-top: 10px; 
    margin-left: 10px;
    font-family: monospace;
    display: inline;
    margin-bottom: 0;
}
.togithub {
    font-size: 30px;
    color: navy;
    text-decoration: none;
    margin-top: 0px;
    margin-right: 10px;
}
.togithub:hover {
    color: blue;
}
.inline {
    display: inline-block;
}

.normal {
    width: 100%; 
    height: 20px;
}
.list {
    margin: 0;
}
.list > li {
    margin: 0;
    padding: 0;
}
.link {
    font-family: monospace;
    font-size: 20px;
    color: navy;
    text-decoration: none;
    margin-top: 0px;
    margin-right: 10px;
    align-self: right;
}
.link:hover {
    color: blue;
}
p {
    font-family: monospace;
    font-size: 20px;
    color: black;
    text-decoration: none;
    margin-top: 0px;
    margin-right: 10px;
    align-self: right;
}

.normalbig {
    width: 100%; 
    height: 100%;
}

