
@font-face {
  font-family: 'Windows Regular';
  src: url('Windows\ Regular.ttf') format('woff2'),
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Windows Regular";
    /* Repeating background */
    background-image: url("imgs/background.gif");
    background-repeat: repeat;

    display: flex;
    justify-content: center;
    align-items: center;
}

.panel {
    width: 800px;
    height: 600px;

    /* Container image */
    background-image: url("imgs/container.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding-top: 50px;
    box-sizing: border-box;
}

.logo {
    width: 250px;
    margin-bottom: 40px;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(3, 120px);
    gap: 20px;
    text-align: center;
    place-items: center;

}

.link-grid img {
    width: 90px;
    height: 90px;
    display: block;
    align-items: center;
    
}

