#flex{
    display: flex;
    justify-content: space-evenly;
    gap: 10px;
    height: 90vh;
}

#links {
    border: 1px solid white;
    border-radius: 10px;

    /* background-color: green; */
}

#main {
    flex: 3 1 auto;

    border: 1px solid white;
    border-radius: 10px;

    /* background-color: red; */
}

#info {
    border: 1px solid white;
    border-radius: 10px;
    
    /* background-color: blue; */
}

body {
    background-color: black;
    color: white;
}

h1 {
    text-align: center;
}

div.internal {
    padding: 10px;
}