@font-face {
    font-family: "Helvetia";
    src: url("/assets/font/Helvetica.woff2") format('woff2'),
         url("/assets/font/Helvetica.woff") format('woff');
}
:root {
    --image: url("../IMG.jpg");
}

* {
    font-family: "Helvetia", sans-serif;
}

.overlay .background{
    left: 0;
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: var(--image);
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(800px);
    -webkit-filter: blur(8px);
    background-position: 50% 10%;
    z-index: 0;
}

.overlay .overlay {
    background-color: #ccc8;
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
}

.box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60vh;
    background: aliceblue;
    border-radius: 5px;
    padding-bottom: 15px;
    z-index: 2;
}

@media screen and (max-width: 600px) {
    .box {
        width: 90%;
    }
}

.box .titleImage {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: 80%;
    padding-top: 80%;
    margin-bottom: 4%;
    position: relative;
    overflow: hidden;
    left: 50%;
    margin-top: 10%;
    transform: translateX(-50%);
    background: var(--image) no-repeat;
    background-size: contain;
	
}

.box .btn {
    color: white;
    font-size: 24pt;
    font-variant: all-small-caps;
    background-color: #70DE65;
    padding: 20px;
}

.box .content {
    width: 40%;
    margin: 0 auto;
}

.box .content .information {
    display: block;
    font-size: 18pt;
    text-align: center;
    font-weight: 1;
    font-variant: all-small-caps;
    margin-bottom: 10%;
}

@media screen and (max-height: 560px) {
    .content .information {
        display: flex !important;
        margin: 0 auto;
    }
    .content .information *:nth-child(1) {
        margin-right: 5px;
    }
    .content .information *:nth-child(1)::after {
        content: ",";
    }
}

.box .btn-group {
    width: 80%;
    left: 10%;
}

.box .btn {
    color: white;
    font-size: 20pt;
    font-variant: all-small-caps;
    background: #70DE65;
    padding: 20px;
}
.box .btn:hover {
    color: white;
    font-size: 20pt;
    font-variant: all-small-caps;
    background: #70DE65;
    padding: 20px;
}

.box .socials {
    margin: 15px auto;
    display: flex;
    width: 80%;
    height: 25px;
    font-size: 25pt;
}

.box .socials * {
    margin: 0 auto;
}

.legal {
    font-variant: all-petite-caps;
    font-size: 14pt;
    color: #333;
    z-index: 3;
    position: absolute;
    bottom: 0;
    right: 20px;
}
