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


body {
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #000;
    display: flex; 
    align-items: center;
    justify-content: center;        
    min-height: 100vh;
    min-height: 100svh;    
    color: #fff;
}


p {
    margin-bottom: 0;
    text-align: center;
    font-size: 30px;
}

.content {
    margin-inline: 16px;
    border: 1px solid #fff;
    display: flex; 
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
}

#logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    display: block;    
}


.video-wrapper {
    position: relative;
    width: 100%;
    /* 16:9 ratio = 9/16 = 56.25% */
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
  .video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }


  .icon {
    height:20px;
  }

  a:link,
  a:visited {
    color: inherit;
    text-decoration: none;
  }
  a {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    transition: .3s ease-in-out;
  }

  a:hover {
    opacity: .7;
  }