@font-face {
    font-family: Roboto;
    src: url(../../../../fonts/Roboto-Regular-webfont.eot),
        url(../../../../fonts/Roboto-Regular-webfont.woff),
        url(../../../../fonts/Roboto-Regular-webfont.ttf),
        url(../../../../fonts/Roboto-Regular-webfont.svg);
}

@font-face {
    font-family: Sosa;
    src: url(../../../../fonts/sosa-regular-webfont.eot),
        url(../../../../fonts/sosa-regular-webfont.woff),
        url(../../../../fonts/sosa-regular-webfont.ttf),
        url(../../../../fonts/sosa-regular-webfont.svg);
}

@font-face {
    font-family: Merienda;
    src: url(../../../../fonts/Merienda-Regular.ttf),
        url(../../../../fonts/Merienda-Bold.ttf);
}

@font-face {
    font-family: Lato;
    src: url(../../../../fonts/Lato-Regular.ttf),
        url(../../../../fonts/Lato-Black.ttf),
        url(../../../..//fonts/Lato-BlackItalic.ttf),
        url(../../../../fonts/Lato-Bold.ttf),
        url(../../../..//fonts/Lato-BoldItalic.ttf),
        url(../../../../fonts/Lato-Hairline.ttf),
        url(../../../../fonts/Lato-HairlineItalic.ttf),
        url(../../../../fonts/Lato-Italic.ttf),
        url(../../../../fonts/Lato-Light.ttf),
        url(../../../../fonts/Lato-LightItalic.ttf);
}

* {
    font-family: "Lato", serif;
    font-size: 16px;
    text-decoration: none;
}

h1 {
    font-family: "Roboto", sans-serif;
    text-align: center;
    vertical-align: bottom;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

h2 {
    font-family: "Merienda", cursive;
    color: #000000;
    text-shadow: 2px 0 5px #ffffff;
}

h3 {
    font-family: "Lato", sans-serif;
    color: #000000;
    text-shadow: 0 0 10px #fff;
    text-align: center;
}

h1,
h2 {
    font-size: 2.5rem;
}

body {
    display: grid;
    margin: 0 auto;
    grid-template-columns: 1fr;
    grid-template-areas: "header""main""footer";
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 20vh;
    background: linear-gradient(to right,
        rgba(0, 148, 255, 1),
        rgba(189, 189, 189, 1));
    width: 100%;
    overflow: hidden;
    font-family: "Merienda", cursive;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    background-color: rgb(178, 202, 175);

}

.ventana {
    margin: 20px auto;
    width: 400px;
    min-height: 400px;
    background-color: #91cae0;
    border: 2px solid rgba(204, 204, 204, 0.123);
    text-align: center;
    padding-bottom: 20px;
}

.containerButton {
    margin: 0 auto;
}

.button {
    margin-top: 50%;
    background: cadetblue;
    border-width: 0;
    padding: 8px;
    border-radius: 3px;
    color: #FFF;
    font-size: 1.1rem;
}

.button2 {
    background: green;
    border-width: 0;
    margin: 0 auto;
    padding: 8px;
    border-radius: 3px;
    color: #FFF;
    font-size: 1.1rem;
}

.bold {
    font-weight: bold;
}

.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 20vh;
    background: linear-gradient(to left,
        rgba(0, 148, 255, 1),
        rgba(189, 189, 189, 1));
}

footer p {
    font-family: "Merienda", cursive;
}