@import url('https://fonts.googleapis.com/css2?family=Anta&display=swap');

* {
    font-family: Anta, serif;
    margin: 0;
}

body {
    overflow: hidden;
}

.main_container {
    position: relative;
    height: 100vh;
}

.main_image {
    width: 100%;
    height: 100%;
    object-fit: cover;

    filter: grayscale(100%);
}

.main_text {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-weight: bold;
    font-style: italic;
    color: #f33;
    font-size: min(15vw, 20vh);
    white-space: nowrap;
}