/* Creating varible */
:root {
    --white: #fff;
    --black: #1e1e1e;
    --blue: #243CFC;
}

body {
    background-color: var(--black);
}

.first-server-section {
    width: 100%;
    height: 60px;
    /* background-color: aqua; */
    display: flex;
    justify-content: center;
}

.first-server-section h1 {
    font-family:'Courier New', Courier, monospace;
    font-size: 90px;
    align-self: center;
    color: var(--white);
}
