@font-face {
    font-family: ibm;
    src: url("./font.woff") format("woff");
}

body {
    font-family: ibm;
    font-size: 15px;
    line-height: 1;
    padding-left: 20px;
    background-color: #0b0b0b;
    color: #c0c0c0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

h1 {
    margin: 0;
}

.links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 20px;
}

.links a {
    display: inline-block;
    position: relative;
    color: #c0c0c0;
    text-decoration: none;
    padding-left: 20px;
    margin-bottom: 5px;
}

.links a::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c0c0c0;
}

.links a:hover {
    text-decoration: underline;
}

.email-contact {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 14px;
    color: #c0c0c0;
}

.email-contact a {
    color: #c0c0c0;
    text-decoration: none;
}

email-contact a:hover {
    text-decoration: underline;
}

.back-page {
    position: fixed;
    top: 10px;
    left: 10px;
    padding: 10px 20px;
    color: #c0c0c0;
}

.back-page:hover {
    text-decoration: underline;
}