/*  import google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}
html{
    scroll-behavior: smooth;
}
/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #fff;
}
::-webkit-scrollbar-thumb {
    background: #292d3d;
    border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5ce1e6;
}
/* custom scroll bar */

body {
    background-color: #292d3d;
    color: #fff;
    font-size: 25px;
}
.full {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: justify;
    margin-bottom: 25px;
    margin-left: 25px;
    margin-right: 25px;
}
.button{
    display: inline-block;
    background: #5ce1e6;
    color: #fff;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #5ce1e6;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}
.button:hover{

    display: inline-block;
    background: transparent;
    color: #fff;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #5ce1e6;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}
@media (max-width: 407px) {
    body {
        font-size: 18px;
    }
}
@media (max-width: 321px) {
    body {
        font-size: 16px;
    }
}
@media (max-width: 297px) {
    body {
        font-size: 14px;
    }
}