@import url('ripples/ripples.css');

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

*:focus {
    outline: none;
}

body, html {
    margin: 0;
    padding: 0;
}

body {
    height: 100%;
    background-color: #f0f0f0;
    font-family: 'Inter', sans-serif;
}

.navbar {
    width: 100%;
    height: 64px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    z-index: 2;
    box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, .3);
}

.title {
    height: 100%;
    border: none;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    background-color: #ffffff;
    color: #2e96db;
    text-decoration: none;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    cursor: pointer;
}

.title:hover {
    background-color: #e0e0e0;
}

.main-content {
    width: 100%;
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.area-title {
    margin: 20px 0 10px 0;
}

.area-subtitle {
    margin: 0 0 40px 0;
}

.flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.button {
    height: 44px;
    margin: 5px 20px;
    padding: 0 30px;
    border: none;
    border-radius: 5px;
    background-color: #2e96db;
    color: #f0f0f0;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s;
}

.button:hover {
    background-color: #62b0e4;
}

.button.ripples-dark:hover {
    background-color: #1e74ae;
}

.square {
    width: 300px;
    height: 300px;
    margin: 10px 20px;
    background-color: #2e96db;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
