@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;800;900&display=swap);


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
}

.wrapper {
    width: 100%;
    height: 100vh;
    background-color: black;
    background: url('./banner.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
}

.box {
    padding: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
}

h1,
h2 {
    font-size: clamp(1rem, 2.5vw, 4rem);
    color: #fff;
    font-weight: 400;
}

.contact-btn {
    padding: 10px 12px;
    border-radius: 4px;
    background-color: #00000090;
    outline: none;
    border: 0;
    width: 200px;
    margin: 20px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    text-align: center;
}