html {
    height: 99%;
    width: 99%;
    font-family: "Roboto", sans-serif;
}

body {
    background-color: rgb(13, 27, 42);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 99%;
    width: 99%;
}

#main-container {
    width: min-content;
    height: min-content;
    background-color: black;
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    border-radius: 20px;
    align-items: center;
    justify-content: center;  
    padding: 40px;
}

h1 {
    margin: 30px;
    font-weight: 700;
    font-size:xx-large;
    color: white;
}

#link-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    margin-bottom: 8px;
}

.link {
    margin: 12px;
    color: white
}