* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    margin: 0 25px;
		width: calc(100vw - 50px);
    height: 100vh;
    background-image: linear-gradient(to top, #209cff 100%, #68e0cf 200%);
    display: flex;
}
.container {
	margin: auto;
}
button {
    border: 0;
    outline: 0;
}

/*/ Titles /*/
.field-title {
    position: absolute;
    top: -10px;
    left: 8px;
    transform: translatey(-50%);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-size: 0.65rem;
    pointer-events: none;
    user-select: none;
}

/*/ Media Queries /*/
@media only screen and (max-width: 768px) {
		.container {
				max-width: calc(100vw - 50px);
		}
		.btn-container {
        grid-template-columns: 100%;
        grid-template-rows: 75px 75px;
        grid-template-areas:
            'Generate'
            'Copy';
    }
		.strength-data-container {
    		grid-template-columns: 100%;
    		grid-template-rows: 60px 60px;
    		grid-template-areas:
						'Strength'
						'Crack-Time';
}
    .btn.generate,
    .btn.copy {
        margin: 0;
    }
    .result__viewbox {
        max-width: auto;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
}
