*{
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html{
    scroll-behavior: smooth;
}

main{
    margin: auto;
    width: 800px;
    background-color: rgba(209, 186, 186, 0.2);
}
h2{
    text-align: center;
    font-size: 32px;
    margin-top: 32px;
    margin-bottom: 32px;
    text-decoration: underline;
}
.div-mo{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

main .div-mo p{
    width: 200px;
    height: 200px;
    max-width: 500px;
    word-wrap: break-word;
}
 .btn{
    margin-bottom: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
 }

button{
    padding: 15px 35px;
    background-color: blue;
    color: blzck;
    border-radius: 25px;
    cursor: pointer;
    margin-bottom: 64px;
}

button:hover{
    background-color: skyblue;
    transition: 0.3s;
    color: white;
}

a{
    text-decoration: none;
    padding: 15px 35px;
    background-color: black;
    color: white;
    border-radius: 25px;
    margin-bottom: 64px;
}

a:hover{
    background-color: skyblue;
    transition: 0.3s;
    color: black;
}

img{
    width: 300px;
    height: auto;
}

@media screen and (max-width: 768px) {
    main{
        width: 300px;
        text-align: center;
    }
    main .globe{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        gap: 48px;
    }
.div-mo{
    display: flex;
    flex-direction: column;
}

    img{
        width: 150px;
        height: 150px;
        margin: auto;
        margin-bottom: 48px;
    }
    .btn{
        margin-top: 32px;
        margin-bottom: 32px;
    }
}