* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.main {
    /*background-color: #f3f3f3;*/
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper {
    width: 80%;
    /*height: 50%;*/
    border-radius: 20px;
    padding-bottom: 10px;
    /*margin: 0 auto;*/
}

.current-file {
    border: 5px solid #aee781;
    background-color: #c8eeac;
}

.old-file {
    border: 5px solid #e78181;
    background-color: #eeacac;
}
.re-creation-file{
    border: 5px solid #e78181;
    background-color: #eeacac;
}
.answer {
    /*border: 1px solid red;*/
    margin: 0 auto;
    margin-top: 20px;
    width: 90%;
    color: #252424;
    font-size: 20px;
    text-align: center;
}

.answer a {
    text-decoration: none;
}

.answer a:hover {
    color: #ee943c;
}


