body {
    background-color: #111111;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box {
    height: 400px;
    width: 400px;
    margin-top: 100px;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    border-radius: 10px;
}


.img {
    height: 100px;
    width: 100px;
    justify-content: center;
    align-items: flex-start;
    border-radius: 50%;
    display: block;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background-color: #f0f0f0;
    color: #111111;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn:hover {
    background-color: #d4d4d4;
    transform: scale(1.05);
}

.container {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}