html{
    height: 100%;
    width: 100%;

    margin: 0;
    padding: 0;
}

body{
    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;
}

.container{
    width: 100%;
    height: 100%;

    background-color: #1F2632;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
}

.advice{
    background-color: #323A49;
    border-radius: 15px;

	height: 380px;
	width: 375px;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex-wrap: wrap;
    align-content: center;

    text-align: center;

    position: relative;
}

.header{
    color: #52FFA8;

    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
}

.main{
    color: #CEE3E9;

    max-width: 80%;
    max-height: 40%;

    min-width: 80%;
    min-height: 40%;

    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}

.footer{
    display: flex;
    flex-direction: column;
}

.draw{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
}

.line{
    background-color: #4E5D73;

    width: 40%;
    height: 1px;
}

.play{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5px;

    width: 20%;
}

.vertical-line{
    background-color: #CEE3E9;

    width: 6px;
    height: 16px;
    border-radius: 15px;
}

input{
    background-color: #52FFA8;
    border-radius: 999px;
    width: 50px;
    height: 50px;

    border: none;

    z-index: 999;

    cursor: pointer;

    font-size: 18px;
}

.div-input{
    margin-bottom: -50px;
}

