/* CSS RESET */
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

/* BACKGROUND */
body {
    background-color: #202733;
}

/* CONTAİNER */
.container {
    width: 343px;
    margin: 120px auto;
    padding: 40px 24px;
    background-color: #313A48;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 30px 50px 80px 0px #0000001A;
}

/* TEXTS */
h1 {
    font-family: "Manrope", sans-serif;
    color: #CEE3E9;
    font-size: 24px;
    font-weight: 800;
    line-height: 32.78px;
    letter-spacing: -0.2571428716182709px;
    margin-bottom: 24px;
}

h3 {
    font-family: "Manrope", sans-serif;
    color: #53FFAA;
    font-size: 11px;
    font-weight: 800;
    line-height: 15.03px;
    letter-spacing: 3.4571425914764404px;
    margin-bottom: 24px;
}

/* BORDER */
.border_line_mobile {
    margin-bottom: 24px;
}

.border_line_desktop {
    display: none;
}

/* BUTTON */
button {
    background-color: #53FFAA;
    border: none;
    border-radius: 100%;
    padding: 20px;
    position: absolute;
    bottom: -32px;
    left: 140px;
    transition: 0.2s ease;
}

button:hover {
    box-shadow: 0px 0px 40px 0px #53FFAA;
}

/* RESPONSİVE */
@media(width > 1439px) {

    /* CONTAİNER */
    .container {
        width: 540px;
        padding: 48px;
        margin: 223px auto;
    }

    /* TEXTS */
    h1 {
        font-size: 28px;
        font-weight: 800;
        line-height: 38.25px;
        letter-spacing: -0.30000001192092896px;
    }

    h3 {
        font-size: 13px;
        font-weight: 800;
        line-height: 17.76px;
        letter-spacing: 4.085713863372803px;
    }

    /* BORDER */
    .border_line_mobile {
        display: none;
    }

    .border_line_desktop {
        display: block;
        margin-bottom: 20px;
    }

    /* BUTTON */
    button {
        left: 238px;
    }

}