@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');

/*Deleting default margins and paddings*/
* {
    padding: 0;
    margin: 0;
}

h1 {
    font-family: 'Alata';
}

h2 {
    font-family: 'Alata';
}

h3 {
    font-family: 'Alata';
}

p {
    /*Adding botttom margins to paragraphs*/
    margin-bottom: 20px;
    font-family: 'Alata';
}

a {
    font-family: 'Alata';
}

header {
    width: 100%;
    position: fixed;
    z-index: 100;
}

nav {
    padding-top: 10px;
    float: right; /* Bar navigation to right */
}
 
nav ul {
    display: flex;
    flex-direction: rows;
    overflow: hidden; /* Cleaning float errors */
}
 
nav ul a {
    float: right;
    border-radius: 16px;
    margin-right: 12px;
    color: #000000;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 15px;
    border: solid black 1px;
    font-weight: bold;
}
 
nav ul a:hover {
    background-color: #000000;
    color: #FFFFFF;
}

main{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10%;
}

footer{
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

footer p a {
    text-decoration: none;
    margin-right: 18px;
    color: #008000;
}

.welcome {
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
}

.welcome h1{
    text-align:center;
    /*line-height: 20px;*/
}
