/* Reset default browser margins and padding */
html, body {
    background-color: black;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
}

/* Ensure box-sizing includes padding/borders in calculations */
* {
    box-sizing: border-box;
}

/* Target element to fill the screen */
.full-screen-div {
    height: 100vh; /* 100% of the viewport height */
    width: 100vw;  /* 100% of the viewport width */
    /* Optional: Prevent content from resizing the element */
    overflow: hidden;
}

h1 {
    margin-bottom: 50px;
}

a {
    color: white;
    text-decoration: none;
}

hr {
    width: 50%;
    margin-top: 50px;
    margin-bottom: 50px;
}

.gccreate-logo-container {
    width: 50%;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
}

.gccreate-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}