@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: mbbold;
    /*a name to be used later*/
    src: url(Media/mbbold-Regular.ttf);
    /*URL to font*/
}

h1 {
    font-family: verdana;
	font-size: 1.5em;
	padding-top: 8vh;
	margin-left: 5vw;
	margin-right: 5vw;
	-webkit-background-clip: text; 
	-webkit-text-fill-color: transparent; 
	background-image: url(Media/yellow-wall.jpg);
}

h1 a {
	text-decoration: none;
}

h1 a:hover {
	-webkit-background-clip: text; 
	-webkit-text-fill-color: transparent; 
	background-image: url(Media/yellow-wall-fade.jpg);
}

html {
	background-image: url("Media/welteegardininvite.png");
    background-repeat: no-repeat;
    background-attachment:scroll;
    background-size: cover;
	background-position: left top;
	background-blend-mode: lighten;
}

p {
	margin-left: 10vw;
	margin-right: 10vw;
	font-size: 1.5em;
	font-family: mbbold;
	font-weight: 600;
	margin-top: 5px;
	width: 75vw;
	-webkit-background-clip: text; 
	-webkit-text-fill-color: transparent; 
	background-image: url(Media/yellow-wall.jpg);
}

p a {
	text-decoration: none;
	padding: 5px;
}

p a:hover {
	-webkit-background-clip: text; 
	-webkit-text-fill-color: transparent; 
	background-image: url(Media/yellow-wall-fade.jpg);
}

h2 {
	font-size: 2em;
	font-family: mbbold;
	font-weight: bolder;
	margin-bottom: 0;	
	margin-left: 5vw;
	margin-right: 5vw;
	width: 75vw;
	text-decoration: underline;
	text-underline-position: auto;
	text-decoration-thickness: 7%;
	-webkit-background-clip: text; 
	-webkit-text-fill-color: transparent; 
	background-image: url(Media/yellow-wall.jpg);
}

h2 a:hover {
	-webkit-background-clip: text; 
	-webkit-text-fill-color: transparent; 
	background-image: url(Media/yellow-wall-fade.jpg);
}

#fadebox {
	left: 10%;
 	top: 10%;
	right: 10%;
	bottom: 10%;
	background-color: white;
	opacity: 0.8;
	box-shadow: 0px 0px 2em 2em rgba(255,255,255, 1);
	position: fixed;
	z-index: -1;
}

.hover:hover + .hide {
  display: block;
	text-decoration: none;
	cursor: pointer
}

.hide {
  display: none;
	text-decoration: none;
	cursor: pointer;
	font-size: 1em;
	font-family: mbbold;
	font-weight: 400;
	margin-left: 5vw;
	margin-right: 5vw;
	-webkit-background-clip: text; 
	-webkit-text-fill-color: transparent; 
	background-image: url(Media/yellow-wall-fade.jpg);
}

@media only screen and (max-width: 600px) {
  .hide {
    display: block;
  }
}

.multiple-uploader {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 15px;
    border: 2px dashed #858585;
    min-height: 150px;
    margin: 20px auto;
    cursor: pointer;
    width: 80%;
}

.mup-msg {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mup-msg span {
    margin-bottom: 10px;
}

.mup-msg .mup-main-msg {
    color: #606060;
    font-size: 1.2rem;
    font-weight: 700;
}

.mup-msg .mup-msg {
    color: #737373;
}

.image-container{
    margin: 1rem;
    width: 120px;
    height: 120px;
    position: relative;
    cursor: auto;
    pointer-events: unset;
}

.image-container:before {
    z-index: 3;
    content: "\2716";
    align-content: center;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 22px;
    color: white;
    position: absolute;
    top: -5px;
    left: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e50000;
    pointer-events: all;
    cursor: pointer;
}

.image-preview {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 12px;
}

.image-size {
    position: absolute;
    z-index: 1;
    height: 120px;
    width: 120px;
    backdrop-filter: blur(4px);
    font-weight: bolder;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    opacity: 0;
    pointer-events: unset;
}

.image-size:hover {
    opacity: 1;
}

.exceeded-size
{
    position: absolute;
    z-index: 2;
    height: 120px;
    width: 120px;
    display: flex;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    background: rgba(255, 0, 0, 0.6);
    pointer-events: unset;
}
