*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.div-father {
    display: block;
    text-align: center;
    padding: 5% 0;
}

.top-div{
    display: flex;
    justify-content: center;
    align-items: center;
}

.div-logo {
    background-color: black;
    border-radius: 100%;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.div-logo img {
    width: 80%;
}

p {
    font-weight: 600;
    padding-top: 5%;
    font-family: sans-serif;
}

.div-containers {
    display: block;
    width: 100%;
}

.img-clickable {
    width: 100%;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -8%;
    max-width: 100%;
}

.img-clickable img {
    max-width: 100%;
}


