@font-face {
    font-family: custom-font;
    src: url(./font/SuperBoys-vmW67.ttf);
    font-style: normal; 
}

html, body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: custom-font;
    height: 100%;
    overflow: auto;
}

.homepage {
    background-color: white;
    box-sizing: border-box;
}

.upper-div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.upper-div .high-score {
    margin-left: 10px;
}

.upper-div .made-by {
    margin-right: 10px;
}

.main-div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-div .welcome-sign h1 {
    font-size: 400%;
    font-weight: 100;
    margin-bottom: 100px;
}

.main-div .start-game .button {
    outline: none;
    border: none;
    padding: 20px 30px;
    margin: 0 20px;
    font-family: custom-font;
    font-size: larger;
    border-radius: 10px;
    background-color: aquamarine;
    cursor: pointer;
    text-decoration: none;
    color: #000;
}

.main-div .start-game .button:active {
    transform: scale(0.9);
}

.instructions {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-top: 100px;
}