* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

@font-face {
    font-family: "LavishlyYours-Regular";
    src: url(fonts/LavishlyYours-Regular.ttf);
}

body {
    font-size: 22px; 
    font-family: "LavishlyYours-Regular";
    color: white;
    line-height: 44px;   
    background-color: rgb(67, 68, 125);
    margin-left: 20px;
    justify-content: center;
   text-align: center;
}

#organise {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

#title {
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 80px;
    text-align: center;
}

#link {
    margin: auto;
    text-decoration: wavy;
    color:white;
    font-size: 30px;
    top: -50px;
    font-family:'Times New Roman', Times, serif;
    display: inline-block;
    background-color: rgb(109, 101, 178);
    padding: 8px 8px;
    border-radius: 15px;
    box-shadow:  1px 2px 7px hwb(60 63% 0%);
    margin-bottom: 20px;
    margin-left: 5px;
    margin-top: 10px;
    text-align: center;
    
}
    #link:hover {
        color: rgb(109, 101, 178);
        background-color: white;
    }
    a:link {
        transition: color 1s;
    }

