
* {
    font-family: 'Inter';
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: blue;
}

li a {
  color: black;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-wrap: break-word;
    width: 100%;
    height: 100%;
    margin: 0;
}

main {
    padding: 1.2rem;
    width: 100%;
    max-width: 900px;
}

.links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1px;
}

.links a {
    font-size: clamp(8px, 2.5vw, 12px);
    color: black;
    transition: all 0.5s ease;
}

.dot {
    height: 5px;
    width: 5px;
    background-color: black;
    border-radius: 50%;
    display: inline-block;
}

li:not(:last-child) { 
    margin-bottom: 5px;  
}

h1 {
    word-break: break-word;
}

h3 {
    font-weight: 600;
}