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

body {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(13px, 3vw, 16px);
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease-in-out;
}

a:hover {
    color: #ff0000af;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    text-align: center;
    padding: 0 20px;
}

.main h1 {
    font-size: clamp(45px, 4vw, 65px);
    font-weight: 900;
    color: #333;
}

.main .meta {
    font-size: clamp(14px, 2vw, 22px);
    font-weight: 300;
    color: #333;
    margin: 2px 0 20px 0;
    font-style: italic;
}

.main h2 {
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 500;
    margin-top: 10px;
}
