@font-face {
	font-family: 'gothic';
	src: url("/assets/css/fonts/gothic.ttf") format('truetype');
	font-display: auto;
}

@font-face {
	font-family: 'gotham';
	src: url("/assets/css/fonts/GothamMedium.ttf") format('truetype');
	font-display: auto;
}

html, body {
    overflow-y: hidden;
}

.container {
    min-width: 100vw;
    max-width: 100vw;
    min-height: 100svh;
    max-height: 100svh;
    min-height: -webkit-fill-available;
    max-height: -webkit-fill-available;
    overflow-y: hidden;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    background-image: url("/assets/img/background-home.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.container > .row {
    height: 100svh;
}

#response-msg {
    text-align: left;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
}

#div-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

#div-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#div-texto h1 {
    font-weight: bold;
    font-family: 'gotham';
    color: white;
    font-size: 5rem;
    text-align: center;
    letter-spacing: -5px;
}


.logo-img {
    width: 60%;
}

.contact-button {
    font-size: 1.4rem;
    color: white;
    background-color: #DB0032;
    border: 2px solid white;
    border-radius: 15px;
    padding: 5px 25px;
    font-weight: bold;
    vertical-align: center;
    cursor: pointer;
}

.contact-button:hover {
    color: white;
}

@media(max-width: 768px) {
    #div-texto {
        justify-content: space-evenly;
    }

    #div-texto h1 {
        font-size: 2.5rem;
        letter-spacing: 0px;
    }

    #btn-join {
        display: none;
    }
}

@media(min-width: 768px) {
    #btn-join-mobile {
        display: none;
    }
}