@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kodchasan:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
    box-sizing: border-box;
    font-family: "Epilogue", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    letter-spacing: 6%;
    scroll-behavior: smooth;
    color: #fff;
}

body {
    box-sizing: border-box;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url(img/bg-hero-block.jpg);
}

h1 {
    font-family: "Kodchasan", sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 70px;
    text-transform: uppercase;
    text-align: center;
    padding: 0 40px;
}

p {
    font-family: "Epilogue", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
}

a {
    font-family: "Epilogue", sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 6%;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid rgb(255, 255, 255, 0);
}

a:hover {
    border-bottom: 2px solid #fff;
}

@media (max-width: 998px) {
    h1 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 32px;
        line-height: 40px;
    }
}