body {
    margin: 0;
    padding: 0;
    font-family: "Arial";
    background-color: navy;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    user-select: none;
    -webkit-user-drag: none;
}

.title {
    font-size: 50px;
    color: white;
}

.pic {
    height: 300px;
    border: 3px solid black;
    border-radius: 30px;
    outline: none;
    box-shadow: 2px 2px 30px rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.pic:hover {
    transform: translateY(-8px);
    box-shadow: 2px 2px 50px rgba(255, 255, 255, 0.7);
}

.desc {
    width: 40%;
    text-align: center;
    font-size: 20px;
    color: white;
}

.btn {
    margin-top: 50px;
    height: 35px;
    width: 160px;
    border-radius: 30px;
    outline: none;
    border: none;
    font-size: 17px;
    box-shadow: 2px 2px 30px rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: black;
    color: white;
    transform: translateY(-8px);
    box-shadow: 2px 2px 50px rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.container {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(10px);
    background-color: rgba(0,0,0,0.3);
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 2;
}

.bg {
    background-color: white;
    height: 300px;
    width: 600px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    z-index: 3;
}

.chooseCon {
    position: absolute;
    margin-bottom: 150px;
}

.animation {
    animation: animate ease 0.3s;
}

@keyframes animate {
    0% { opacity: 0; }

    50% { opacity: 0.5; }

    100% { opacity: 1; }
}