/* reset all styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

p {
    display: inline;
    color: white;
    margin-right: 16px;
}

button {
    background-color: #ED078B;
    color: white;
    border: none;
    border-radius: 20%;
    cursor: pointer;
    padding: 16px;
    margin-top: 18px;
}

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section > p {
    align-self: center;
    margin-top: 16px;
    max-width: 70%;
}

.container-card {
    position: relative;
    display: block;
}

.row{
    position: absolute;
    top: 50%;
    left: 25%;
    padding: 64px;
    transform: translate(-50%, -50%);
    background-color: #fff; /* Optional background color */
    border-radius: 16px;
    color: white;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /
}


/* Add a black background color to the top navigation */
.topnav {
    background-color: #ED078B;
    overflow: hidden;
    padding: 8px;
}

.topnav2{
    background-color: white;
    overflow: hidden;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Style the links inside the navigation bar */
.topnav a {
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav2 a {
    color: #423F8D;
    margin: 16px;
}

.topnav2 a:hover {
    color: #ED078B;
}

.topnav2 button {
    background-color: #07edc3;
    color: white;
    border: none;
    border-radius: 20%;
    padding: 8px;
    cursor: pointer;
    float: right;
}

.left {
    float: left;
}
.right {
    float: right;
}
