@font-face {
    font-family: soundblaster;
    src: url(../fonts/soundblaster.woff2);
}

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

html {
    cursor: url("../img/logo.svg") 12 12, auto;
}

body {
    overflow: hidden;
    height: 100%;
    color: aliceblue;
    background: url(../img/Comp1.gif);
    background-size: cover;
}

.welcome {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
}

.script {
    grid-area: 1 / 1 / 6 / 6;
    z-index: 1;
}

.welcome__button {
    text-align: center;
    align-items: center;
    justify-content: center;
    justify-items: center;
    grid-area: 3 / 3 / 4 / 4;
    z-index: 4;
}

button {
    padding: 1rem 3rem 1rem 3rem;
    background-color: rgba(0, 0, 0, 0);
    color: white;
    border: solid rgb(255, 255, 255) 2px;
    border-radius: 2rem;
    z-index: 2;
    transition: .2s ease-in-out;
}

button:hover {
    transform: scale(1.1);
    transition: .2s ease-in-out;
}

h1 {
    margin-top: 0.5rem;
    font-family: soundblaster;
    font-size: 1rem;
}

p {
    font-family: 'Lato', sans-serif;
    font-weight: 100;
    font-size: 0.5rem;
}