@font-face {
    font-family: gazpachoHeavy;
    src: url(./resources/fonts/GazpachoHeavy.ttf);
}

body{
    font-family: gazpachoHeavy;
    background-color: aquamarine;
    color: white;
}

.container{
    top: 0px;
	left: 0px;
	overflow: hidden;
	position: absolute;

	height: 100%;
	width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url('./resources/Fondo.png');
    background-size: 100% auto;
}

.content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.logo{
    margin: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.logo-image{
    /* -webkit-filter: drop-shadow(5px 5px 5px #222);
    filter: drop-shadow(5px 5px 5px #222); */
    top: -0.5rem;
    position: absolute;
}
.logo-image-background{
    /* -webkit-filter: drop-shadow(5px 5px 5px #222);
    filter: drop-shadow(5px 5px 5px #222); */
    filter: opacity(50%) blur(0.2rem);
}

.welcome-message{
    font-size: 1rem;
    text-shadow: 0px 0.2rem 0.2rem #aaa;
}

.name-field{
    border-radius: 20px;
    border-style: solid;
    border-color: #6FAB37;
    border-width: 1px;
    padding: 0.5rem 1rem;
    margin: 1rem;
    width: 15rem;
    box-shadow: 0px 0.5rem 1rem #FFFFC1;
    font-family: gazpachoHeavy;
    color: #6FAB37;
}

.name-field::placeholder{
    color: #6FAB37;
}

.name-field:focus, input:focus{
    outline: none;
}

.send-button{
    cursor: pointer;
    background-color: #61D5F1;
    color: white;
    border-style: none;
    border-radius: 15px;
    padding: 0.5rem 2.6rem;
    margin-bottom: 6rem;
    box-shadow: 0px 0.5rem 1rem #61D5F1;
    font-family: gazpachoHeavy;
}