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

body{
    font-family: monospace;
    color: white;
    background-color: rgb(0, 6, 38);
    background: rgb(0, 6, 38);
}
h2{
    text-decoration-line: underline;
}

.main-container{
    padding: 1rem;
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.name{
/* width: 100%;

display: flex;
justify-content: flex-start;
align-items: center; */
font-size: 2rem;
}

.info{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    flex-direction: column; 
    gap: 1rem;
}

.footer{
    background-color: black;
}
