@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
    --background-color: #ffffff;
    --main-color: #2392c5;
    --secondary-color: #00183e;
    --text-color: #111111;
    --secondary-text-color: #555555;
}
body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    direction: ltr;
    margin: 0;
}
a{
    text-decoration: none;
    display: inline-block;
}
p{
    line-height: 1.6;
    color: var(--text-color);
}