@font-face {
  font-family: 'BeaufortBold';
  src: url(fonts/BeaufortforLOL-Bold.otf) format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: 'BeaufortMedium';
    src: url(fonts/BeaufortforLOL-Medium.otf) format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Spiegel';
    src: url(fonts/Spiegel-Regular.otf) format('opentype');
    font-weight: normal;
    font-style: normal;
}

.header-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    position: relative;
    width: 100vw;
    height: 100%;
    padding: 0px;
}


.header-title-text {
    margin-right: auto;
    margin-left: 4vw;
    align-self: center;
    color:rgb(200, 170, 110);
    font-family: 'BeaufortBold';
    text-transform: uppercase;
    font-size: 60px;
}

.header-title-text span {
    color: white;
    font-size: 80px;
}

.header-ult-info {
    height: 60%;
    display: flex;
    flex-wrap: wrap;
    margin-left: 4vw;
    color: #f0e6d2;
}

.header-ult-info-text {
    font-family: 'Spiegel';
    font-size: 20px;
    padding-bottom: 0;
    margin-bottom: 0;
}

.header-ult-info-text b {
    color:cornflowerblue;
}

.theme-images {
    display: flex;
    justify-content:flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.theme-images input {
    width: 100px;
    height: 100px;
    margin-top: 20px;
    object-fit: cover;
    transition: all 0.3s;
    margin-right: 20px;
}

.theme-images input:hover {
    transform: scale(1.2);
}

h1 {
    color:rgb(200, 170, 110);
    font-family: 'BeaufortBold';
    text-align:center;
    padding: 10px;
    cursor: default;
    text-align: left;
    font-size: 40px;
    margin-bottom: 0;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

footer {
    margin: 0;
    padding: 0;
    background-color: black;
}

a {
    display: flex;
    justify-content: center;
    width:100vw;
    margin-left: auto;
}

/* Style changes for smaller screens */
@media screen and (max-width: 1200px ){
    .header-container {
        background-color: rgb(0,0,30);
    }

    .header-ult-info {
        grid-column: 1 / 3;
        margin-right: 50px;
    }

    .header-ult-info img {  
        margin-right: auto;
        margin-left: 2vw;
        height: 100px;
        margin-bottom: 20px
    }
}
