@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Sarala&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-size: 100%;
    background: linear-gradient(-45deg, #8AD0D0, #0B7999)
}

.topbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 18px;
}

.image-logo {
    height: 72px;
}

.topbar-menu {
    display: flex;
    gap: 35px;
}

.topbar-menu-item {
    font-family: 'Sarala', sans-serif;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
}

.content {
    margin-bottom: 30px;
    border-top: 0.2px solid #fff;
    
}

.content-principal {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.content-principal-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.content-principal-title {
    font-family: 'Righteous', cursive;
    font-weight: 400;
    font-size: 64px;
    color: #fff;
}

.content-principal-subtitle {
    font-family: 'Sarala', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #fff;
}


.content-second {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    color: #fff;
    font-family: 'Sarala', sans-serif;
}

.rodape {
    position: absolute;
    bottom: 0;
    background-color: #fff;
    width: 100%;
    height: 100px;    
    font-family: 'Sarala', sans-serif;
    font-size: 15px;
    align-items: center;
    background: #fff;
    color: rgb(0, 0, 0);
    padding: 10px;
    text-align: center;
}