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

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #111821;
}

section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

a {
    text-decoration: none;
}

span {
    color: #dbdcde;
    font-weight: 600;
    font-size: 21pt;
    transition: ease-in 0.5s;
}

span:hover {
    font-size: 23pt;
    transition: ease-in 0.5s;
}

button {
    cursor: pointer;
    width: 42vw;
    text-align: center;
    margin: 2% 0% 2% 0%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    background-color: #111821;
    color: #dbdcde;
    border-color: #dbdcde;
    padding: 3% 1% 3% 1%;
    border-radius: 15px;
    font-size: 18pt;
    transition: ease-in 0.5s;
}

button:hover {
    font-size: 19pt;
    transition: ease-in 0.5s;
    padding: 4% 2% 4% 2%;
    background-color: #272e38;
}

.buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 1%;
}

.investtools {
    margin: 0;
    color: #dbdcde;
    font-weight: 700;
    font-size: 38pt;
    margin-bottom: 2%;
    transition: ease-in 0.5s;
}

.investtools:hover {
    font-size: 42pt;
    transition: ease-in 0.5s;
}

@media screen and (max-width: 555px) {
    .investtools {
        font-size: 36pt;
        margin-bottom: 5%;
        transition: none;
    }

    .investtools:hover {
        transition: none;
        font-size: 36pt;
    }

    button {
        width: 80vw;
        text-align: center;
        padding: 4% 2% 4% 2%;
        font-size: 14pt;
    }

    button:hover {
        font-size: 14pt;
        transition: none;
        padding: 4% 2% 4% 2%;
    }

    .buttons{
        margin-bottom: 3%;
    }

    span{
        font-size: 18pt;
        transition: none;
    }

    span:hover{
        font-size: 18pt;
        transition: none;
    }}