* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
}

.header {
    position: relative;
}

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

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 5em;
    font-weight: bold;
    text-align: center;
    background-color: black;
}

.content {
    padding: 40px;
    text-align: center;
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.likers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.liker {
    width: 30%;
    text-align: center;
}

.liker img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.liker h3 {
    margin-top: 10px;
    font-size: 1.5em;
}

.liker p {
    font-size: 1em;
    margin-top: 10px;
    color: #555;
}

@media (max-width: 768px) {
    .text {
        font-size: 200%;
    }
    
    .liker {
        width: 100%;  
    }
}


