* {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.menu {
    font-weight: 600;
    font-size: 24px;
    margin: 10px 50px;
}

#login {
    color: #FFFFFF;
    background-color: #665AE1;
    border-radius: 20px;
    padding: 5px 20px;
    border: none;
    font-weight: 600;
    font-size: 24px;
}
#login:nth-child(2) {
    opacity: 40%;
}
#login:hover {
    opacity: 0.8;
}
#login:active {
    opacity: 0.4;
}

a {
    margin-right: 20px;
    color: #989D9C;
}
a:nth-child(2) {
    opacity: 40%;
}

a:hover {
    opacity: 0.8;
}

a:active {
    opacity: 0.4;
}


main {
    display: flex;
    flex-direction: row;
    padding: 0px 120px 0px 120px;
    margin-top: 100px;

}

img {
    margin-right: 100px;
    max-width: 568px;
    max-height: 500px;
}

h1 {
    font-weight: 900;
    font-size: 100px;
    color: #515151;
    margin-top: 10px;
}

h2 {
    font-weight: 500;
    font-size: 58px;
    color: #515151;
    margin-bottom: 30px;
}

p {
    font-weight: 400;
    font-size: 24px;
    color: #848484;
    max-width: 515px;
    text-align: justify;
    margin-bottom: 30px;
}

button {
    background-color: #ADFF00;
    color: #000000;
    border-radius: 20px;
    padding: 5px 30px;
    border: none;
    font-weight: 600;
    font-size: 28px;
    margin-top: 30px;
}

@media screen and (max-width: 450px) {

    .menu {
        font-size: 17px;
        display: flex;
        flex-direction: row;
        align-content: center;
        justify-content: center;

    }

    #login {
        font-size: 14px;
        padding: 5px 15px;
        border-radius: 40px;
        width: 80px;
        height: 30px;
        margin-top: 10px;

    }

    .service {
        display: none;
    }

    a {
        margin-top: 17px;
    }

    main {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 200px;
        flex-wrap: nowrap;
        align-items: center;
        overflow-x: hidden;
        overscroll-behavior-x: none;
    }


    img {
        width: 354px;
        height: 317px;
        margin: 0
    }

    h1 {
        width: 263px;
        height: 52px;
        font-size: 50px;

    }

    h2 {
        width: 232px;
        height: 37px;
        font-size: 30px;
        margin: 5px 0px 15px;
    }

    p {
        display: none;
    }

    button {
        width: 239px;
        height: 64px;
        border-radius: 50px;
        font-size: 28px;
        margin: 0
    }
}