@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto;
}

body {
    height: 100vh;
}



.hero {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro {
    text-align: center;
}

.start-btn {
    margin-top: 20px;
    background-color: rgba(255, 166, 0, 0.609);
    font-size: 20px;
    padding: 10px;
    border-radius: 5px;
}

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