*{

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body{

    background: #F7F1E4;

}

.medication-screen{

    position: relative;

}

.medication-screen > img{

    width: 100%;

    display: block;

}

@font-face {
    font-family: "Railey";
    src: url("../../assets/fonts/Railey.ttf") format("truetype");
}

@font-face {
    font-family: "Pompiere";
    src: url("../../assets/fonts/Pompiere.ttf") format("truetype");
}

.medication-title{

    position: absolute;

    top: 14%;

    left: 50%;

    transform: translateX(-50%);

    width: 100%;

    text-align: center;

    color: #413F3F;

    font-size: 70px;

    font-family: "Railey";

}
.medication-list{

    position:absolute;

    top:28%;

    left:12%;

    display:flex;

    align-items:center;

    gap:28px;

}

.pill-button{

    border:none;

    background:transparent;

    padding:0;

    cursor:pointer;

}

.pill-icon{

    width:100px;

    height:100px;

    object-fit:contain;

}

.pill-text{

    font-family: "Pompiere";

    font-size: 45px;

    color: #7F7F7F;

    padding-bottom: 8px;

}
.medication-list-1{

    position: absolute;

    top: 30%;

    left: 10%;

    display: flex;

    align-items: center;

    gap: 28px;

}

.medication-list-2{

    position: absolute;

    top: 50%;

    left: 10%;

    display: flex;

    align-items: center;

    gap: 28px;

}

.medication-list-3{

    position: absolute;

    top: 70%;

    left:10%;

    display: flex;

    align-items: center;

    gap: 40px;

}
.back-button{

    position: absolute;

    bottom: -25%;

    left: 50%;

    transform: translateX(-50%);

    width: 80px;

    height: 80px;

    background: transparent;

    border: none;

    opacity: .1;

}