@import url('https://fonts.googleapis.com/css2?family=K2D:wght@300;400;500;600;700;800&display=swap');

* {
    font-family: 'K2D', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background: url(backupscaled.jpeg);
    background-attachment: fixed;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center top;
    height: 100vh;
}

.main-container {
    height: 80vh;
    display: flex;
    justify-content: center;
    place-items: center;
    flex-direction: column;
    gap: 10vh;
}

.heading {
    color: #000;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    line-height: normal;
    background-color: #d9d9d9;
    padding: 20px 5vw;
    border-radius: 60px;
    border: 4px solid black;
}

.btn-start {
    height: 6vh;
    width: 10vw;
    border-radius: 50px;
    border: 5px solid #000;
    background: #FF9431;
    padding: 10px;
    display: flex;
    place-items: center;
    justify-content: center;
}

.btn-start  a{
    text-decoration: none;
    color: #000;
}

.credits {
    height: 18vh;
    display: flex;
    justify-content: space-around;
    background-color: lightgoldenrodyellow;
    width: 95vw;
    margin: 0 auto;
    border: 4px solid black;
    border-radius: 20px;
}

.credits > img {
    padding-top: 17px;
    height: 100px;
}