@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Wallpoet&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Montserrat', sans-serif; */
    font-family: 'Wallpoet', cursive;
}

.template {
    position: relative;
    text-align: center;
}

.template img {
    width: 100%;
    height: 100vh;
}

.template .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.text h2 {
    font-size: 8rem;
}

.text h4 {
    font-size: 2rem;
}

.text .btn-template {
    background-color: #6c55ff;
    font-size: 1rem;
    color: white;
    border-radius: 0;
    margin: 1rem 0;
}

.text .sociallinks a {
    color: #bbbbbb;
    padding: 4px;
    margin: auto;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
}

.text .sociallinks a:hover {
    color: #6c55ff;
    transition: .4s;
}

@media (max-device-width: 480px) {
    .text h2 {
        font-size: 5rem;
    }
}