@charset "UTF-8";

/* CSS Document */
/* Path: dist/css/styles_extra.css */

/* import the ttf font liberation_sans from folder fonts */
@font-face {
	font-family: 'Couture';
	src: url('../fonts/couture-bld.otf') format('truetype');
}

@font-face {
	font-family: 'LiberationSans-Regular';
	src: url('../fonts/couture-bld.otf') format('truetype');
}

.overlay {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 8000;
    cursor: pointer;
}

.overlay-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
	height: 100%;
}

.overlay-content input {
    display: block;
    margin: 10px 0;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

.error-message {
    color: red;
    margin-top: 10px;
}

#main-content {
    display: none;
    text-align: center;
    padding: 20px;
}