body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.card-container {
    position: relative;
    margin-bottom: 50px;
    width: 300px;
    height: 400px;
    overflow: hidden;
}

.card {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.button-container {
    display: flex;
    justify-content: space-around;
    width: 300px;
}

.nope-btn, .like-btn {
    padding: 15px 30px;
    font-size: 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.nope-btn {
    background-color: #ff6b6b;
    color: #ffffff;
}

.like-btn {
    background-color: #77dd77;
    color: #ffffff;
}

.counter-container {
    display: flex;
    justify-content: space-around;
    align-items: center; 
    width: 300px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 50px;
}