.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 35%;
    height: auto;
    gap: 1rem;
    /* box-shadow: 2px 2px 3px #ecebeb, -2px -2px 3px #ecebeb, -2px 2px 3px #ecebeb, 2px -2px 3px #ecebeb; */
    padding: 1rem;
}

.container h1 {
    color: #004577;
}

.container p {
    text-align: center;
    font-size: 12px;
}

.bt {
    display: flex;
    gap: 1rem;
}

a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    width: 100px;
    height: 100px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    color: #3f3d3d;
}

.bt a:first-child {
    background: #004577;
    color: #fff;
    box-shadow: 2px 2px 3px #004577;
}

.bt a:last-child {
    background: #faca0a;
    color: #000;
    box-shadow: 2px 2px 3px #f4da75;
}

a:hover {
    background: #e7e5e5;
}