/* Desktop styles (default) */
/* These styles apply to all screen sizes, including desktop by default */
@font-face {
	font-family: "roma";
	src:url("fonts/Roma-Bold.otf") format('opentype');
}

@font-face {
	font-family: "actuallyroma";
	src:url("fonts/ActualRomaMedium.otf") format('opentype');
}

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    font-family: "actuallyroma";
    color: #333333;
}

body, html {
    width: 100%;
}

a {
    color: #333333;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

.left-side {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-side img {
    height: 80%;
}


.right-side {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    padding: 2em;
}

.right-side img {
    width: 100%;
}

.title {
    font-weight: bold;
}

.links {
    padding-bottom: 2em;
}

.release {
    padding-bottom: 2em;
}

.release a {
    text-decoration: none;
}

.live {
    position: fixed;
    bottom: 1em;
    left: 1em;
    background-color: #acb3b8;
    padding: 1em;
}

.no-live {
    visibility: collapse;
}

.border img {
    border: 1px solid #333333;
}

.video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background-color: aqua;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Tablet styles */
@media (max-width: 1023px) {
    /* Add your tablet-specific styles here */
}

/* Mobile styles */
@media (max-width: 767px) {
    
    body {
        background-color: #333333;
        font-family: "actuallyroma";
        color: #acb3b8;
    }
    
    a {
        color: #acb3b8;
        text-decoration: underline;
    }

    a:hover {
        text-decoration: none;
    }
    
    .left-side {
        position: relative;
        width: 100%;
        background-color: #333333;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 2em;
    }
    
    .left-side img {
        height: 20em;
    }
    
    .live {
        position: relative;
        background-color: #333333;
        left: 0;
        color: #acb3b8;
        width: 100%;
        padding: 1em;
    }
    
    .right-side {
        position: relative;
        width: 100%;
        margin-top: -2em;
        padding: 1em;
    }
}
