* {
    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(182, 186, 237);
    margin-left: 20px;
    margin-right: 22px;
    justify-content: center;
   text-align: center;
}

#organise {
    display: grid;
    grid-template-rows: repeat(5, 1fr);
}

#title {
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 80px;
    text-align: center;
}

#info {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    background-color: rgb(109, 101, 178);
    outline: auto;
    outline-style: double;
    outline-color: rgb(255, 235, 169);
    outline-width: 5px;
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px;
}

#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;
    }


