* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Kumar One', cursive;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background-color: #ffbfc5;
}

.container {
    display: flex;
    width: 100%;
}

.section {
    position: relative;
    width: 50%;
}

.section img {
    width: 99%;
    height: auto;
    display: block;
}

.section new-culture img{
    height: 1000px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.7);
}

h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    height: 50px;
}

.discover-btn {
    display: block;
    margin: 5px auto;
    padding: 10px 20px;
    background: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1rem;
    color: #000;
    transition: background 0.3s, color 0.3s;
    opacity: 80%;
    font-family: 'Merriweather', serif;
}

.discover-btn:hover {
    opacity: 1;
}

a {
  text-decoration: none;
}

