@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Slackey&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

.body
{
    min-height: 100vh;
    width: 100%;
    background-color: #1e73be;
    box-sizing: border-box;
}

.header
{
    background-color: #FAFAFA;
    background-size: cover;
}

.header-img
{
    float: left;
    margin: 15px;
}

.header-title
{
    font-family: 'Slackey', cursive;
    font-size: 4.4em;
    margin: 0;
    padding-bottom: 0;
}

.header-subtitle
{
    margin-left: 3px;
    font-weight: bold;
}

.mainmenu
{
    background: #a5cffa;
    text-align: left;
}

.mainmenu ul
{
    display: inline-flex;
    list-style: none;
    font-weight: bold;
}

.mainmenu ul li
{
    width: 150px;
    text-align: left;
}

.mainmenu ul li a
{
    text-decoration: none;
    color: #000;
    font-size: 13px;
    padding-left: 10px;
}

.mainmenu ul li:hover
{
    background: #6bb2fa;
}

.mainmenu .fa
{
    margin-right: 8px;
}

.submenu1
{
    display: none;
}

.mainmenu ul li:hover .submenu1
{
    display: block;
    position: absolute;
    background: #a5cffa;
}

.mainmenu ul li:hover .submenu1 ul
{
    display: block;
    border-top: 2px solid #1e73be;
}

.mainmenu ul li:hover .submenu1 ul li
{
    width: 150px;
    padding-bottom: 3px;
    border-bottom: 2px solid #1e73be;
}

.mainmenu ul li:hover .submenu1 ul li:last-child
{
    border-bottom: none;
}

.fa-arrow-up-right-from-square
{
    float: right;
}

.logo-links
{
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    justify-content: flex-end;
    padding-bottom: 30px;
}

.rights
{
    text-align: center;
    position: absolute;
    width: 100%;
    padding-bottom: 90px;
}

.logos
{
    display: flex;
}

.logos a
{
    width: 50px;
    height: 50px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.50);
    margin: 0 30px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s;
}

.logos a .fa-brands
{
    font-size: 30px;
    line-height: 50px;
    position: relative;
    z-index: 10;
    transition: color 0.5s;
}

.logos a::after
{
    content: '';
    width: 100%;
    height: 100%;
    top: -90px;
    left: 0;
    background: #f1f9ff;
    position: absolute;
    transition: 0.5s;
}

.fa-twitch
{
    padding-top: 2px;
    padding-left: 3px;
}

.logos a:hover::after
{
    top: 0;
}

.logos a:hover .fa-brands
{
    color:#000;
}

.logos a:hover 
{
    color:#000;
}

.logos a:hover
{
    transform: translateY(-10px);
}

svg
{
    fill: white;
    z-index: 10;
}

a:hover svg
{
    fill:black;
    transition: fill 0.5s;
}

/* CSS-styling her */
.twitch-iframe {
    width: 100%;
    height: 1000px;
    border: none;
  }