body {
    background-color: #000;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    text-align: center;
}

.company-name {
    font-family: Monaco, monospace;
    font-size: 24px;
    color: #fff;
}

.company-symbol {
    font-family: Monaco, monospace;
    font-size: 72px;
    color: #fff;
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    z-index: 1;
}

ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

li {
    display: inline;
    margin-right: 20px;
}

p {
    text-decoration: none;
    font-family: Monaco, monospace;
    color: #fff;
}

a {
    text-decoration: none;
    font-family: Monaco, monospace;
    color: #fff;
}

a:hover {
    background-color: #fff;
    color: #000;
}
