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

body {
    display:flex;
    font-family: Cascadia Mono,monospace;
    background: white;
    color: #000000;

    min-height: 100vh;

    justify-content: center;
    align-items: center;

    
}

main {
    flex: 1;

    background: white;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.left,.right{
    width: 70px;
    min-height: 100vh;
    background-image: url("images/a-yellow-and-black-striped-warning-sign-on-a-transparent-background-free-png.png");
    background-size: auto;
    background-repeat: no-repeat;
}

.container {
    width: 100%;
    padding: 20px;
}
/*
.card {
    max-width: 650px;
    margin: auto;

    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 18px;

    padding: 50px;

    text-align: center;

    box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
*/
h1 {
    display:flex;
    font-size: 3rem;
    justify-content: center;
    color: black;
    margin-bottom: 3%;
    
}
h3{
    display:flex;
    
    justify-content: center;
    color: black;
    
}
.subtitle {
    margin-top: 10%;
    display:flex;
    font-size: 1.3rem;
    color: #000000;
    justify-content: center;
}

p {
    line-height: 1.7;
    color: #cbd5e1;
}

.links {
    margin-top: 35px;

    display: flex;
    justify-content: center;
    gap: 20px;

    flex-wrap: wrap;
}

.links a {
    text-decoration: none;
    color: rgb(0, 55, 255);
    background: #ffffff;
    padding: 12px 24px;
    border:2px solid rgb(0, 55, 255);
    border-radius: 8px;
    transition: .2s;
}

.links a:hover {
    transform: translateY(-2px);
}

