@font-face {
    font-family: 'Lavencia';
    src: url('BunyaPersonalLight.ttf');
}

body {
    font-family: sans-serif;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: white;
}

.alert_logo {
    font-family: 'Lavencia', sans-serif;
    font-size: clamp(2.5rem, 6vw, 100px);
}

@media(max-width: 480px) {
    .alert_logo {
        font-size: 3rem;
    }
}

main {
    justify-content: center;
    text-align: center;
}

.alert {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

a {
    padding: 10px;
    text-decoration: none;
    color: black;
    transition: color 0.3s ease-in;
    font-weight: 700;
}

a:hover {
    color: #444444;
}