@font-face {
    font-family: 'MyFont';
    font-style: normal;
    font-weight: normal;
    src: url('/fonts/segoeui.ttf') format('truetype');
}
@font-face {
    font-family: 'MyFont';
    font-style: normal;
    font-weight: bold;
    src: url('/fonts/segoeuib.ttf') format('truetype');
}

html{
    height: 100vh;
    display: flex;
}
body {
    font-family: "MyFont", Tahoma, "Microsoft Sans Serif", sans-serif;
    margin: 0;
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}


a {
    color: #036a8f;
}
a:visited, a:focus {
    color: unset;
}

header {
    margin-bottom: 50px;
}
.logo {
    width: auto;
    height: 50px;
    aspect-ratio: 1/1;
}
.logo-name {
    vertical-align: top;
    font-size: 2rem;
    font-weight: bold;
    margin-inline-start: 10px;
}



footer{
    margin: auto 0 0 0;
}

footer > p{
    margin: 0 0 6px 0;
}




.title {
    margin-bottom: 50px;
}
.title > h1 {
    font-size: 1.5rem;
}
.title > p {
    text-align: justify;
}


li {
    margin-top: 10px;
}

