* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background: url(/image/home/boybg.png);
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(3px);
    height: 100vh;
}

main {
    width: 50%;
    height: auto;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    text-align: center;
    border-radius: 8px;
    padding: 20px;

}

img {
    width: 100px;
    height: 100px;
}

.content {
    font-size: 20px;
    margin-top: 20px;
    flex-direction: column;
    display: flex;
    align-items: center;
}

.content h3 {
    width: 50%;
    text-align: center;
}

.content p {
    font-size: 18px;
    width: 50%;
}

h1 {
    color: green;
    font-size: 34px;
    margin-top: 20px;
}

p {
    font-size: 20px;
    margin-top: 20px;
}

.button {
    font-size: 20px;
    margin: 25px;
}

.button a {
    text-decoration: none;

    color: green;
    transition: ease-in-out 0.4s;
}

.button a:hover {
    background-color: #ff8c42;
    padding: 6px;
    border-radius: 4px;
    color: #fff;
}

@media screen and (max-width: 768px) {
    main {
        width: 100%;
        padding: 15px;
    }

    img {
        width: 80px;
        height: 80px;
    }

    .content h3,
    .content p {
        width: 70%;
    }

    h1 {
        font-size: 28px;
    }

    p,
    .content p {
        font-size: 16px;
    }
}

@media screen and (max-width: 600px) {
    body {
        padding: 10px;
    }

    main {
        width: 100%;
        padding: 15px;
    }

    img {
        width: 80px;
        height: 80px;
    }

    .content h3,
    .content p {
        width: 100%;
        font-size: 16px;
    }

    h1 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
    }

    .button {
        font-size: 18px;
        margin: 15px;
    }
}