*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body main {
    font-family: Arial, sans-serif;
    color: #FFFFFF;
    padding: 3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 20px;
}

footer{
    font-size: .85rem;
}

a{
    text-decoration: none;
    color: inherit;
}

a:hover{
    color: inherit;
    text-decoration: inherit;
}

.titleLev1{
    font-size: 1.5rem;
}

.colorWhite, .hoverColorWhite {
    color: #FFFFFF;
}

.bgColorBlue, .hoverBgColorBlue {
    background-color: #0F2B3B;;
}

.customBtn{
    display: inline-block;
    padding: 0.75rem 1rem;
    border-radius: 20px;
    background-color: #FFFFFF;
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    transition: all .3s ease;
}

.customBtn:hover{
    background-color: #000;
    color: #FFFFFF;
}