@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap');

html, body {
    font-family: "Montserrat";
    height: 100%;
    color: white;
    background-color:black;
    overflow-x: hidden;
}

h2{
    text-decoration: underline 3px gold;
    text-underline-offset: 5px;
}

#header{
    font-size: 30px;
    font-weight: 900;
    font-family: 'Pinyon Script', cursive;
    color: gold;
}

/*
h2 {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h2:before,
h2:after {
    content: '';
    border-top: 2px solid;
    margin: 0 20px 0 0;
    flex: 1 0 20px;
}

h2:after {
    margin: 0 0 0 20px;
}

*/

#banner{
    width: 100%;
    height: 100%;
    padding: 0px;
}

#link{
    color: gold;
}

#platforms{
    width: 175px;
    height: 125px;
    transition: .25s ease-in-out;
}

#platforms:hover { 
    transform: scale(1.25); 
}

#press{
    width: 210px;
    height: 110px;
    font-size: 18px;
    color: gold;
}

@media only screen and (max-width: 768px) {
    #press{
        display: none;
    }
}

#press-link{
    font-size: 18px;
    color: gold;
}

#xs-first{
    margin-top: 1.5rem;
}

#press-link:hover { 
    font-size: 20px;
    transition: .25s ease-in-out;
}

#socials{
    display: block;
}

.container {
    margin: 0 auto; /*centers the div horizontally*/
    position: relative;/*Required for the overlay effect because below in the "overlay" class it is set to position: absolute, so that class is absolute positioned relative to this container class*/
    width: 100%;
}

.container:hover{
    transform: scale(1.01); 
    transition: .25s ease-in-out;
}

.overlay {
    position: absolute;/*See above comment in container class for position: relative*/ 
    bottom: 0; /*sets the overlay to the bottom of the container*/
    background: rgba(0, 0, 0, 0.75); /* Black see-through */ 
    width: 100%; /*takes up 100% width of the container*/
    height: 100%;
    transition: .5s ease-out;
    opacity: 0; /*Sets it to originally not be visible until below hover conditions*/
    color: white;
    font-size: 20px;
    padding: 250px;
    text-align: center;
  }

  @media only screen and (max-width: 768px) {
    .overlay {
        position: absolute;/*See above comment in container class for position: relative*/ 
        bottom: 0; /*sets the overlay to the bottom of the container*/
        background: rgba(0, 0, 0, 0.75); /* Black see-through */ 
        width: 100%; /*takes up 100% width of the container*/
        height: 100%;
        transition: .5s ease-out;
        opacity: 0; /*Sets it to originally not be visible until below hover conditions*/
        color: white;
        font-size: 20px;
        padding: 100px;
        text-align: center;
      }
  }
  
  .container:hover .overlay {
    opacity: 1; /*Makes overlay visible when the container div is hovered*/
  }

  #social-link{
    font-size: 18px;
    color: gold;
    text-decoration: underline 2px gold;
    text-underline-offset: 1px;
}

#social-link:hover{
    font-size: 20px;
    transition: .25s ease-in-out;
}

