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

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

body {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #111;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    border: 90px solid rgb(41, 73, 81);
}

h1 {
    font-size: 100px;
    color: rgb(0, 217, 255);
    text-shadow: 1px 1px 30px rgba(0, 217, 255, 0.5);
    border: 3px solid rgb(30, 57, 53);
    border-radius: 20px;
}

h2 {
    color: rgb(0, 217, 255);
    text-shadow: 1px 1px 30px rgba(0, 217, 255, 0.5);
    margin-top: 10px;
    border: 3px solid rgb(30, 57, 53);
    border-radius: 2px;
}