@font-face {
    font-family: Montserrat;
    font-display: swap;
    font-style: italic;
    font-weight: 300;
    src: url(Montserrat-LightItalic.ttf) format("truetype")
}

@font-face {
    font-family: Montserrat;
    font-display: swap;
    font-style: italic;
    font-weight: 400;
    src: url(Montserrat-Italic.ttf) format("truetype")
}

@font-face {
    font-family: Montserrat;
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url(Montserrat-MediumItalic.ttf) format("truetype")
}

@font-face {
    font-family: Montserrat;
    font-display: swap;
    font-style: italic;
    font-weight: 600;
    src: url(Montserrat-SemiBoldItalic.ttf) format("truetype")
}

@font-face {
    font-family: Montserrat;
    font-style: italic;
    font-display: swap;
    font-weight: 700;
    src: url(Montserrat-BoldItalic.ttf) format("truetype")
}

@font-face {
    font-family: Montserrat;
    font-style: italic;
    font-weight: 800;
    font-display: swap;
    src: url(Montserrat-ExtraBoldItalic.ttf) format("truetype")
}

@font-face {
    font-family: Montserrat;
    font-style: italic;
    font-display: swap;
    font-weight: 900;
    src: url(Montserrat-BoldItalic.ttf) format("truetype")
}

@font-face {
    font-family: Montserrat;
    font-style: normal;
    font-display: swap;
    font-weight: 300;
    src: url(Montserrat-Light.ttf) format("truetype")
}

@font-face {
    font-family: Montserrat;
    font-style: normal;
    font-display: swap;
    font-weight: 400;
    src: url(Montserrat-Regular.ttf) format("truetype")
}

@font-face {
    font-family: Montserrat;
    font-display: swap;
    font-style: normal;
    font-weight: 500;
    src: url(Montserrat-Medium.ttf) format("truetype")
}

@font-face {
    font-family: Montserrat;
    font-display: swap;
    font-style: normal;
    font-weight: 600;
    src: url(Montserrat-SemiBold.ttf) format("truetype")
}

@font-face {
    font-family: Montserrat;
    font-style: normal;
    font-display: swap;
    font-weight: 700;
    src: url(Montserrat-Bold.ttf) format("truetype")
}

@font-face {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(Montserrat-ExtraBold.ttf) format("truetype")
}

@font-face {
    font-family: Montserrat;
    font-display: swap;
    font-style: normal;
    font-weight: 900;
    src: url(Montserrat-Black.ttf) format("truetype")
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Montserrat, Arial, sans-serif
}

body {
    width: 100%;
    min-height: 100vh;
    background-image: url(./1.webp);
    background-size: cover;
    background-position: center center;
}

h1,
p {
    text-align: center;
    width: 100%;
}

div {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}

h1 {
    color: #9B1C23;
    font-size: clamp(20px, 5vw, 80px);
    font-weight: 500;
}

p {
    color: #555555;
    font-size: clamp(18px, 2.5vw, 40px);
    letter-spacing: -1px;
    font-weight: 400;
    margin-top: 40px;
}