*, *::before, *::after {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    line-height: 150%;
}

body {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 100vw;
    min-height: 100vh;
    background-color: #54a0ff;
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes hrtz {
    0% {
        transform: translateY(25%);
    }
    100% {
        transform: translateX(0);
    }
}

.background {
    min-width: 100vw;
    min-height: 100vh;
    background-image: url("Medicine_Wheel.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    animation: 2s ease-out 0s 1 slideInFromBottom
}

#personImage {
    max-width: 200px;
    max-height: 200px;
}

#title {
    padding-bottom: 20px;
    font-weight: bold;
    font-size: 24px;
}

.heart {
    animation: 0.25s ease-in 0s 1 hrtz
}

.container {
    width: 800px;
    max-width: 80%;
    background-color: white;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 0 40px 10px #c8d6e5;
    opacity: 0.9;
}

.input-grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px;
    margin-top: 20px;
}

.btn {
    background-color: #ecf0f1;
    border: 1px solid #bdc3c7;
    padding: 5px 10px;
    outline: none;
}

.btn:hover {
    border-color: #95a5a6;
}

.code-text {
    font-size: medium;
    font-weight: bold;
}
