﻿* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    list-style-type: none;
}

body {
    width: 100%;
    height: 100%;
    font-weight: 300;
    color: #666;
    font-size: 14px;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    background: none;
    font-display: fallback;
}

.centered {
    text-align: center;
}

.container-thanks {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    width: 100%;
    align-items: center;
    margin: 0;
    overflow: hidden;
    padding: 16px;
    gap: 16px;
}

.logo {
    max-width: 300px;
}
.logo-container img{
    max-width: 100%;
}
.container-thanks .section-thanks {
    position: relative;
    display: flex;
    align-items: center;
    max-width: max-content;
    width: 100%;
    background-color: #e5e5e5;
    border-radius: 10px;
    padding: 32px 16px;
    flex-flow: column nowrap;
    justify-content: center;
    text-align: center;
    gap: 16px;
}



.container-thanks .logo-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    /* margin: 20px; */
}

.container-thanks .icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    min-width: 150px;
    height: 150px;
    background-color: #0e3c6e;
    border-radius: 100%;
    font-size: 21px;
}

.icon-container img {
    vertical-align: middle;
    border-style: none;
}

.container-thanks .title {
    font-style: normal;
    font-size: 24px;
    line-height: 32px;
    /* line-height: 40px; */
    /* font-size: 36px; */
    color: #0e3c6e;
    margin-bottom: 12px;
}


.container-thanks .description {
    text-align: left;
}

.description p {
    font-size: 18px;
    text-align: center;
}

/* boton */

.back-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-weight: 400;
    font-size: 21px;
    overflow: hidden;
    line-height: 20px;
    background: none;
    padding: 16px;
    width: 100%;
    text-decoration: none;
    background-color: #008CB8;
    margin-top: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    max-width: max-content;
}

    .back-button:hover {
        background-color: #34b6dd;
    }

/* Responsive */

@media screen and (min-width: 640px) {
    .container-thanks .section-thanks{
        flex-flow: row nowrap;
    }
    .container-thanks .title{
        text-align: left;
        font-size: 34px;
        line-height: 40px;
    }
    .description p{
        text-align: left;
    }
}
