/*Imports*/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300&display=swap');
/*Header*/
body {
    margin: 0%;
}
header {
    background-color: rgb(2, 129, 248);
    display: flex;
    align-items: center;
    justify-content: left;
    height: 50px;
    box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.28);
}
.headerh1 {
    font-family: 'Roboto Slab', serif;
    font-size: 25px;
    color: white;
    margin-left: 25px;
}
.link {
    font-family: 'Roboto Slab', serif;
    font-size: 20px;
    color: white;
    margin-left: 18px;
    text-decoration: none;
    transition: 0.3s;
}
.link:hover {
    font-family: 'Roboto Slab', serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.589);
    margin-left: 18px;
    text-decoration: none;
    transition: 0.3s;
}
/*Footer*/
footer {
    display: block;
}
.footerP {
font-size: 15px;
font-family: 'Roboto slab', serif;
margin-left: 15px;
}
.link2 {
font-family: 'Roboto Slab', serif;
font-size: 15px;
color: rgb(0, 0, 0);
margin-left: 15px;
text-decoration: none;
transition: 0.3s;
}
.link2:hover {
font-family: 'Roboto Slab', serif;
font-size: 15px;
color: rgb(44, 44, 44);
margin-left: 15px;
text-decoration: none;
transition: 0.3s;
}
/*Button*/
.button {
    color: black;
    background-color: white;
    border: 3px solid black;
    font-size: 28px;
    font-family: 'Roboto slab', serif;
    padding: 5px;
    border-radius: 2px;
    text-decoration: none;
    margin-left: 10px;
    transition: 0.3s;
    margin-top: 10px;
    margin-bottom: 10px;
}
.button:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    border: 3px solid black;
    font-size: 28px;
    font-family: 'Roboto slab', serif;
    padding: 5px;
    border-radius: 2px;
    text-decoration: none;
    margin-left: 10px;
    margin-top: 10px;
    transition: 0.3s;
    margin-bottom: 10px;
}
/* page content */
.pagetext {
    font-family: 'Roboto Slab', serif;
    font-size: 35px;
    color: rgb(0, 0, 0);
    margin-left: 25px;
}
.pageparagraph {
    font-family: 'Roboto Slab', serif;
    font-size: 20px;
    color: rgb(0, 0, 0);
    margin-left: 25px;
    margin-bottom: 25px;
}
.linebreak {
    margin-bottom: 25px;
    font-size: 1px;
}