body {
    background-color: black;
    font-family: Roboto, sans-serif;
}

.background {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: black;
    position: fixed;
    width: 100%;
    height: 100%;
}

.name {
    color: white;
    font-weight: 500;
    font-size: 54px;
}

.links {
    display: flex;
    justify-content: center;
}

.button {
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    margin: 7px;
    padding: 7px;
    color: white;
    border-color: white;
    border: 0.6px solid;
    border-radius: 50px
}

.button:hover {
    background-color: white;
    text-decoration: none;
    color: black;
}