    /* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-size: 22px; 
    font-family: 'Courier New', Courier, monospace;
    color: rgb(255, 255, 255);
    line-height: 40px;
    background-color: hwb(323 68% 0%);
    margin-top: 5px;
    margin-bottom: 20px;

}

#title {
    text-align: center;
    margin-top: 5vh;
}

#link {
    color:hwb(0 100% 0%);
    font-size: 15px;
    top: -50px;
    font-family:'Courier New', Courier, monospace;
    display: inline-block;
    text-decoration: none;
    background-color: rgb(255, 94, 199);
    padding: 2px 5px;
    border-radius: 10px;
    box-shadow:  2px 4px 10px rgb(255, 229, 238);
    text-align: center;
    margin-bottom: 20px;
    margin-left: 20px;
}