@import "/public/css/global.css";

body {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #4F776C;
    font-family: 'Arial', sans-serif;
    color: #FFFFFF;
}

.container {
    text-align: center;
}

.container h1 {
    font-size: 10rem;
    margin: 0;
    font-weight: bold;
    color: #FFFFFF;
}

.container h2 {
    font-size: 2rem;
    margin: 0;
    color: #FFFFFF;
}

.container p {
    font-size: 1rem;
    margin: 1rem 0 2rem;
}

.container a {
    text-decoration: none;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.container a:hover {
    background-color: #fff;
    color: #2e3b52;
}