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

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;

    scroll-behavior: smooth;
}

body {
    color: #ffffff;
    background-color: #142158;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    
    width: 100%;
    height: 50px;

    background-color: #142158;
}

header button {
    height: 100%;
    width: 100px;

    border: 0px;

    background-color: #142158;
    color: #ffffff;

    transition: all 0.5s linear;
}

header button:hover {
    background-color: #47559196;
    color: #0059ff;
}


.home {
    display: flex;
    position: relative;
    margin-top: 50px;

    background-color: #142158;

    height: 900px;

    padding: 20px 0px 30px 30px;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-size: 42px;
    font-family: "Fjalla One", sans-serif;
    font-weight: 400;
    font-style: normal;

    background-repeat: no-repeat;
    background-size: 100%;
}

.home button {
    padding: 5px;

    background-color: #ffffff00;
    color: #354ebd;

    transition: all 0.7s linear;

    border: 0px;
    border-radius: 8px;
}

.home button:hover {
    color: #ffffff;
    background-color: #00800088;
}

.panel {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;

    padding: 10px;

    border: 1px;
    border-radius: 10px;

    transition: all 0.8s linear;

    background-color: #293b8d;

    margin: 10px;

    font-family: 'Courier New', Courier, monospace;
}

.title {
    display: flex;
    align-items: center;

    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #ffffffe0;
}

.title img {
    border-radius: 100%;
    width: 80px;
    height: 80px;

    margin: 10px;
}

.panel:hover {
    background-color: #354ebd4d;
}

.contact {
    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;
    text-decoration-line: none;
    text-decoration-style: none;
}

.contact a {
    margin: 10px;

    color: #ffffff;
}

footer {
    display: flex;
    justify-content: center;

    background-color: #142155;
    padding: 20px;
}