*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

:root
{
    --color--primary: #023566;
}

.container_main
{
    width: 100%;
    height: auto;
    margin: auto;
    background-color: #021129;
}

header
{
    display: grid;
    place-items: center;
}

.bg_section
{
    width: 100%;
    height: 200px;
    margin: auto;
    background-image: url(img/Presentación\ proyecto\ fin\ de\ grado\ profesional\ en\ color\ azul\ \(1\).jpg);
    background-position: center;
    background-size: cover;
    border-bottom: 6px solid #fff;
}

.title
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.subtitle
{
    color: #fff;
}

.section_date
{
    display: grid;
    place-items: center;
    padding: 100px 0 50px 0;
    position: relative;
}
.img_logo
{
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 100%;
    background-color: #023566;
    padding: 5px;
    top: -50%;
    border: 6px solid #fff;
}

.span_name
{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 10px 0 10px 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.section_button
{
    width: 50%;
    height: auto;
    margin: auto;
    display: grid;
    grid-gap: 20px;
    padding-bottom: 20px;
}

.btn_ancor
{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    transition: .3s ease-in-out;
    text-align: center;
    font-weight: 500;
    border: 1px solid #fff;
    background-color: #023566;
    outline: none;
}

.wsp
{
    background-color: #10b34c;
}

.arrow_wsp
{
    animation: arrowMove .6s ease-in-out infinite alternate-reverse;
}

@keyframes arrowMove 
{
    0%
    {
        transform: translateX(0px);
    }   
    100%
    {
        transform: translateX(10px);
    } 
}


.div_img_text
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.container_footer
{
    width: 100%;
    height: auto;
    margin: auto;
    padding: 10px 10px 20px 10px;
    text-align: center;
}

.text_footer
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #fff;
}

.image_logo_coulex
{
    width: 30px;
    height: 30px;
}

@media screen and (max-width:768px)
{
    
    .bg_section
    {
        width: 100%;
        height: 140px;
        margin: auto;
        background-image: url(img/Presentación\ proyecto\ fin\ de\ grado\ profesional\ en\ color\ azul\ \(1\).jpg);
        background-position: center;
        background-size: cover;
    }
    .section_button
    {
        width: 90%;
        height: auto;
        margin: auto;
        display: grid;
        grid-gap: 20px;
    }
}