@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:wght@400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;font-size: 1em; /* 16px */ }

body {
    background-color: whitesmoke;
    color: rgb(60, 60, 60);
}

header{
    margin-bottom: 50px;
}

.carousel-caption p { font-weight: 500; font-size: 1em; text-transform: uppercase;}

h1, h2, h3 {
    font-family: "Montserrat", sans-serif;
}

h1 {
    font-weight: 900;
    font-size: 3.35em; /* 62px */
    width: 40vw;
    color: black;
}

h2 {font-weight: 600;}

h3{ 
    font-weight: 700;
    font-size:1.75em; /* 28px */
    color: black;
}

h5 {
    font-weight: 500;
    text-decoration: 1px solid underline;
}

.columnas {
    margin: 80px auto;
    width: 60vw;
}

.columnas p { font-size: 0.75em;}

.custom-width {
    max-width: 50%;
    margin: 0 auto;
}

.gallery {
    margin: 100px 0;
}

.gallery img {
    margin-bottom: 50px;
}

.rounded-bottom-right {
    border-bottom-right-radius: 50px;
}

.rounded-bottom-left {
    border-bottom-left-radius: 50px;
}

.button {
    align-content: center;
    align-items: center;
}

footer {
    margin-top: 120px;
    height:20vh;
    background-color: #4c4c4c;
}



@media(max-width:768px) {
    body {
        font-size: 12px;
    }

}