* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    background-color: rgb(0, 5, 15);
}

h1 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 30px;
    color: white;
    
}

.container {
    display: flex;
    align-content: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

.container nav {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.container nav a {
    display: inline-block;

    font-size: 18px;
    margin: 15px;
    background-color: rgb(0, 0, 0);
    padding: 20px 10px;
    width: 200px;
    transition: 350ms ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.247);
    border-radius: 5px;
}

.container nav a {
    box-sizing: border-box;
    color: white;
    text-decoration: none;
}

.container nav a:hover {
    transform: scale(1.2);
    background-color: rgb(187, 0, 72);
}