@font-face {
    font-family: "AmongUsTitle";
    src: url("/2-Font/Impostograph-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "AmongUsFont";
    src: url("/2-Font/In your face, joffrey.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    background: #ff0000;
    font-family: 'AmongUsFont';
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    color: white;
}

.Title {
    margin: 10vh 0 0 0 0;
    font-family: 'AmongUsTitle';
    font-size: 80px;
    font-weight: bold;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5vh;
}

select, input {
    width: 80vw;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
}

button {
    background: #e39494;
    border: none;
    padding: 15px 40px;
    font-size: 24px;
    border-radius: 12px;
    cursor: pointer;
    color: white;
}

.result-box {
    background: white;
    color: black;
    width: 80vw;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    font-size: 24px;
}

.alert-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #ffcccc;
    color: #b30000;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    font-weight: bold;
    z-index: 9999;
    font-size: 30px;
    text-align: center;
}