* {
box-sizing: border-box;
font-family: "Roboto", sans-serif;
font-weight: 400;
font-style: normal
}


body{
margin-top: 5vh;
}

/* COLOR */

.black-color{
    color: black;
}

.ligth-blue-color{
    color: #A5C9EB;
}

.white-color{
    color: white;
}

.gray-color{
    color: rgb(110, 108, 108);
}

.dark-blue-color{
    color: #14163f;
}

.white-background-color{
    background-color: white;
}

.dark-blue-background-color{
    background-color:#14163f;
}

.blue-background-color{
    background-color:#10A3DF !important
}

.btn-card{
    background-color: white;
    min-width: 100%;
}

.btn{
    color: white;
    border-radius: 10px;
    width: 45%;
    font-size: 22px;
    text-decoration: none;
}

.btn:hover{
    background-color: #141658;
    color: white;
}

.btn-strip{
    color: white;
    border-radius: 10px;
    width: 45%;
    font-size: 22px;
    text-decoration: none;
    min-height: 5vh;
    padding: 4px;
    margin: 1px;
}

.btn-strip:hover{
    color:white;
    background-color: #10A3DF;
}

@media screen and (max-width: 600px){
    body{
        margin-top: 0.5vh;
    }
}

@media screen and (max-width: 400px){
    body{
        margin-top: 0.5vh;
    }
}