@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    /* RESET THE PAGE STYLE */
    margin: 0;
    padding: 0;
    user-select: none;
    font-family: "Ubuntu", sans-serif;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #35495E;
    padding: 10px 10px 15px;
    text-align: center;
    box-shadow: 0px 5px 10px black;
    z-index: 999;
}

header h1 {
    margin-bottom: 10px;
    color: #FFFFFF
}

header ul {
    list-style-type: none;
    padding: 0;
}

header p {
    display: inline;
    margin-right: 20px;
}

header p:last-child {
    margin-right: 0;
}

header p {
    text-decoration: none;
    color: #FFFFFF;
    margin-top: 50px;
    font-weight: 400;
    transition: font-weight .1s ease-in-out;
}

header p p:hover {
    text-decoration: underline;
    font-weight: 700;
}