* {
    margin: 0%;
    padding: 0%; 
    font-family: 'Ubuntu', sans-serif;
    scrollbar-width: thin;
    scrollbar-color: #0a4c95 #c2d2e4;
    scroll-behavior: smooth;
}

main {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: row;
}

.div-screen {
    display: flex;
    overflow: hidden;
    margin: auto;
}

.div-screen img{
    display: flex;
    max-width: 100%;
    max-height: 100%;
    margin-left: 15px;
    margin-right: 15px;
}

.div-desc {
    margin-right: 15px;
    margin-left: 15px;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 15px;
    background-color: #c2d2e4;
}

.div-desc h1 {
    text-align: center;
    padding: 15px;
    font-size: 1.35vw;
}

.div-desc p, span {
    font-size: 0.9vw;
    line-break: auto;
}

.div-desc button {
    margin-top: 1.3vh;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.1vh;
    padding: 0.9vw;
    border-radius: 15px;
    background-color: black;
    color: white;
    font-size: 20px;
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: center;
}

.div-desc button a {
    margin: 0;
    text-decoration: none;
    color: white;
    font-size: 1vw;
}

.div-desc button:hover {
    background-color: #0a4c95;
}

.div-desc ul {
    margin-top: 10px;
    list-style: none;
}

.desc-documents {
    margin-top: 1%;
}

.desc-documents a {
    display: flex;
    margin-top: 6px;
    color: #0a4c95;
    text-decoration: none;
    font-size: 1vw;
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {

    main {
        flex-direction: column;
    }

    .div-screen {
        margin-bottom: 2%;
        margin-left: 2%;
        margin-right: 2%;
    }

    .div-screen img {
        width: 100%;
        max-height: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .div-desc p, span {
        font-size: 1.7vw;
    }

    .desc-documents a {
        font-size: 1.7vw;
    }

    .div-desc button {
        padding: 1.7vw;
    }

    .div-desc h1 {
        font-size: 2.40vw;
    }

    .div-desc button a {
        font-size: 1.7vw;
    }

}

@media only screen and (min-device-width : 320px) and (max-device-width : 768px) {

    main {
        flex-direction: column;
    }

    .div-screen {
        margin-bottom: 2%;
        margin-left: 2%;
        margin-right: 2%;
    }

    .div-desc {
        margin-left: 2%;
        margin-right: 2%;
    }

    .div-screen img {
        width: 100%;
        max-height: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .div-desc p, span {
        font-size: 2.5vw;
    }

    .desc-documents a {
        font-size: 2.5vw;
    }

    .div-desc button {
        padding: 2.5vw;
    }

    .div-desc button a {
        font-size: 2.5vw;
    }

    .div-desc h1 {
        font-size: 2.40vw;
    }

}