@font-face {
    font-family: Nunito;
    src: url('./assets/nunito.ttf');
}
@font-face {
    font-family: Playfair;
    src: url('./assets/playfair-display.ttf');
}
body{
    font-family: Nunito;
    background-image: linear-gradient(0deg, #7A618B, #F19B9A, #FFC9E3);
    background-repeat: no-repeat;
    margin: 0;
}
#headline-logo{
    position:relative;
    width:50%;
    height:200px;
}
#hl-img{
    position:absolute;
    width: 100%;
    bottom:0;
    left:0;
}
#navbar{
    color: white;
    font-style: normal;
    font-size: x-large;
    
}
#games-title {
    color: white;
    text-shadow: 1px 1px 5px black;
    font-family: Playfair;
    font-size: 400%;   
    padding:0;
    margin:0;
}
#games-undertitle {
    color: white;
    text-shadow: 1px 1px 5px black;
    font-size: 100%;
    padding:0;
    margin:0;
}

a {
    color:white;
    text-decoration: none;
    transition: 0.3s;
}
a:hover{
    text-shadow: 1px 1px 5px white;
}

#header-left-image{
    position: absolute;
    top:0;
    left:0;
    width:20%;
}
#header-right-image{
    position: absolute;
    top:0;
    right:0;
    width:20%;
}
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height:20%;
}
#footer-left-image{
    position: absolute;
    bottom:0;
    left:0;
    width:20%;
}
#footer-right-image{
    position: absolute;
    bottom:0;
    right:0;
    width:20%;
}

#sky-background{
    background-image: linear-gradient(180deg, #7A618B, #F19B9A, #FFC9E3);
    background-repeat: no-repeat;
    margin: 0;
    height:100%;
    width:100%;
    top:0;
    left:0;
    position:fixed;
    z-index:-1000;
}

#bottom-container{
    position:relative;
    width: 80%;
    height:150px;
    left:20%;
    text-align: left;
}

#contact-sheet{
    position: relative;
    font-size: 100%;
    text-align: left;
    line-height: 0.8;
    width:20%;
    top:30px;
}
#bottom-logo{
    position:relative;
    width:25%;
    height:100px;
    bottom:30px;
    left: 30%;
}
#b-img{
    position:absolute;
    height:100%;
    top:0;
    left:0;
}

/* canvas */

#canvas-stars{
    position:fixed;
    overflow:hidden;
    top:0;
    left:0;
    z-index: -10;
}

/* widgets */

#widgets{
    width:100%;
    overflow: hidden;
}
.widget-row{
    width: 100%;
    height: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.widget{
    height:300px;
    width:300px;
    margin: 20px;
    padding: 20px;
    top:0;
    left:0;
    position: relative;
}

.widget-body{
    background-color: black;
    border-radius: 20px;
    position:relative;
    top:0;
    left:0;
    height:100%;
    width:100%;
    margin:0;
    padding:0;
}

.widget-header {
    background-color: #E25172;
    top: 5px;
    left:5px;
    width: calc(100% - 10px);
    height: calc(18% - 10px - 5px);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    position: absolute;
    color: white;
    margin:0;
}
.widget-title-text{
    position:relative;
    display:inline-block;
    left:10px;
    font-size: larger;
    vertical-align:middle;
    width:65%;
    height:100%;
    line-height: 1;
    padding-left: 0px;
}

.widget-main {
    background-color: white;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    position:absolute;
    width: calc(100% - 10px);
    height: 82%;
    left: 5px;
    bottom:5px;
}

.widget-main-text{
    width:80%;
    display:inline-block;
    position: relative;
    left:10px;
    top:10px;
}

.widget-shadow {
    background-color: black;
    opacity: 20%;
    border-radius: 20px;
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;
    height:90%;
    width:90%;
}

.widget-video-wrapper {
    background-color: black;
    position: absolute;
    border-radius: 20px;
    width:80%;
    height:60%;
    left:10%;
    bottom:20px;
}

.widget-video-thumbnail{
    position:absolute;
    top:5px;
    left:5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    object-fit: cover;
    border-radius: 16px;
}

.widget-itch{
    position:absolute;
    cursor: pointer;
    height:40px;
    width:40px;
    right: 0px;
    top:0px;
    opacity: 0.7;
}
.widget-itch:hover{
    opacity:1;
    transition: 0.3s;
}

.widget-steam{
    position:absolute;
    cursor: pointer;
    height:40px;
    width:40px;
    right: 40px;
    top:0px;
    opacity: 0.7;
}
.widget-steam:hover{
    opacity:1;
    transition: 0.3s;
}

.widget-subtext{
    position: absolute;
    bottom: 2px;
    color: black;
    height:20px;
    width:100%;
}
.widget-release{
    position:absolute;
    left:30px;
    height:100%;
    line-height: 100%;
    width:50%;
}
.widget-status{
    position:absolute;
    right: 30px;
    height:100%;
    line-height: 100%;
    width:50%;
    text-align: right;
}
