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

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background-image: url("assets/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-direction: column;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: Arial, sans-serif;
}
.constructimg{
    width: 300px;
    height: auto;
    margin-bottom: 20px;
}
h1 {
    color: white;
    font-size: 20;
    text-align: center;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}
h2 {
    color: rgb(196, 196, 196);
    font-size: 10;
    text-align: center;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}