@import url('https://fonts.googleapis.com/css2?family=Freehand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 50px;
    background-color: var(--backgroundColour);
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

:root {
    --textColour: #fff;
    --backgroundColour: #212121;
}

.main {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-gap: 50px;
}

.logo {
    width: 400px;
    aspect-ratio: 1.8/1;
    background-image: url("https://i.ibb.co/39ZD79vw/Irie-FM-Branding-2-Main-Logo.png");
    background-size: cover;
}

.nowInfo > div {
    display: block;
    color: var(--textColour);
    margin-top: 50px;
}

.nowInfo > div > span {
    display: block;
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
}

.nowInfo > div > text {
    display: block;
    font-size: 50px;
    line-height: 60px;
    font-weight: 800;
    margin-top: 15px;
}

.list {
    margin-bottom: 50px;
    color: var(--textColour);
}

.listTitle {
    font-size: 22px;
    line-height: 22px;
    font-weight: 600;
}

.listData {
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    font-size: 20px;
    line-height: 20px;
}

.listData-alt {
    grid-gap: 30px;
}

.listData > span {
    position: relative;
}

.listData > span > text {
    position: absolute;
    left: 80px;
}

#showProgress {
    position: fixed;
    bottom: 0px;
    left: 0px;
    height: 10px;
    background-color: #068C42;
}

#fullDisplay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: var(--backgroundColour);
    display: none;
}

#fullDisplay-title {
    font-size: 70px;
    line-height: 80px;
    padding: 0px;
    border: none;
    background-color: transparent;
    color: var(--textColour);
    font-weight: bold;
    height: 100%;
    width: 100%;
}

.fullDisplay-logo {
    position: absolute;
    bottom: 50px;
    left: calc(50% - 150px);
    width: 300px;
    aspect-ratio: 1.8/1;
    background-image: url("https://i.ibb.co/39ZD79vw/Irie-FM-Branding-2-Main-Logo.png");
    background-size: cover;
}

.listData > span > t {
    display: inline-block;
    width: 150px;
}