@charset "UTF-8";

body, html {
    margin: 0;
    padding: 0;
    background-color: black;
}

a:link {
    text-decoration: none;
    color: inherit;
}

a:visited {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: inherit;
}


section {
    margin: 50px auto 0 auto;
    padding: 0;
    width: 80%;
    max-width: 1362px;
    overflow: hidden;
}

section img {
    margin: 0;
    padding: 0;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translate(-50%);
    left: 50%;
}

section p {
    margin: 75px 0 0 0;
    padding: 0;
    font-family: "roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(18px, 4vw, 20px);
    text-align: justify;
    -webkit-hyphens: auto; 
    hyphens: auto;
    color: white;
}

section button {
    margin: 40px 0 40px 0;
    padding: 10px 12px 10px 12px;
    font-family: "roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(18px, 4vw, 20px);
    color:  #E600B1;
    border: 1px solid #E600B1;
    border-radius: 5px;
    background-color: transparent;
    width: 160px;
    cursor: pointer;

}

section button:hover {
    color: black;
    background-color: #E600B1;
    transition: ease 200ms;
}

@media screen and (max-width: 1000px) {
    section {
        width: 90%;
    }
}