* {
    padding: 0px;
    margin: 0px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #111111;
    overflow-x: hidden;
}

@media screen {
    .button {
        margin: 5px;
        padding: 7px;
        width: 20px;
        height: 20;
        text-decoration: none;
        color: white;
        font-weight: bold;
        background-color: goldenrod;
        border-radius: 7px;
        border: 3px solid #000;
        position: relative;
        top: 10px;
    }

    .divisor {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        background: goldenrod;
        height: 2px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .info {
        width: 100%;
        max-height: 1000px;
        margin: 30px;
        display: flex;
        flex-wrap: wrap;
        overflow-y: hidden;
    }

    .info .info-img {
        width: 500px;
        max-height: 550px;
        border-radius: 30px;
        border: 4px solid goldenrod;
    }

    .img-right {
        position: relative;
        left: 175px;
    }

    .text-left {
        position: relative;
        right: 120px;
    }

    .info .info-texts {
        text-align: start;
        max-width: 600px;

        position: relative;
        left: 120px;
        top: 100px;
    }

    .info .info-title {
        color: goldenrod;
        font-size: 30px;
    }

    .info .info-text {
        color: gray;
        font-size: 17px;
    }

    .footer {
        display: flex;
        justify-content: center;
        color: white;
        padding: 10px;
    }
}