* {
    padding: 0;
    margin: 0;
}

html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    background-color: #fbcf03;
}

.Main {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transform: translateY(-25px);
}

.Title {
    font-family: "Galada", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 100px;
}

.Code {
    font-family: "Lekton", monospace;
    font-weight: 400;
    font-style: normal;
    
    width: 360px;

    background-color: #372f2f;
    color: #ddd9d9;

    border: 2px solid #ddd9d9;
    border-radius: 8px;
    
    padding: 15px;
    box-sizing: border-box;
}

.RepoCode {
    position: relative;
    font-family: "Lekton", monospace;
    font-weight: 400;
    font-style: normal;
   
    width: 65%;
    max-width: 360px;

    background-color: #372f2f;
    color: #ddd9d9;

    border: 2px solid #ddd9d9;
    border-radius: 8px;
    
    padding: 8px 12px;
    box-sizing: border-box;
    margin: 8px 0;
    left: 55px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.RepoCode label {
    position: absolute;
    top: 0px;
    background: #ddd9d9;
    color: #372f2f;
    padding: 6px 6px;
    border-radius: 6px 0 0 6px;
    border-top: 2px solid #372f2f;
    border-bottom: 2px solid #372f2f;
    border-left: 2px solid #372f2f;
    left: -110px;
    font-weight: bold;
    width: 100px;
    cursor: pointer;
}

.RepoCode mark {
    background: #fbcf03;
    padding: 0 5px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

.RepoCode pre {
    font-family: inherit;
}

.Links {
    display: flex;
}

.Download {
    font-family: "Lekton", monospace;
    color: #372f2f;
    background-color: #fbcf03;
    border: 2px solid #372f2f;
    margin: 15px 5px;
    width: 172px;
    padding: 3px 0;
    box-sizing: border-box;
    border-radius: 8px;
    font-size: 17px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.5s;
}

.Download:hover {
    background-color: #372f2f;
    border: 2px solid #ddd9d9;
    color: #fbcf03;
}