@font-face {
    font-family: "BungeeShade";
    src: url("/font/BungeeShade.ttf")
}

* {
    user-select: none;
}

body {
    background: greenyellow;
}

.titlePage{
    text-align: center;
    color: black;
    font-family: "BungeeShade";
}

button, a.button {
    border-radius: 5%;
    padding: 10px;
    border: none;
    background-color: transparent;
    transition: all 0.5s;
    margin: 3px;
    
    text-decoration: none;
    color:black;
    
}

button:hover, a.button:hover {
    transform: scale(1.2);
    cursor: pointer;
}

#materie {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.spacer {
    flex: 2.5;
    opacity: 0;
}

.main_content {
    display: flex;
    flex-direction: row;
}

#output {
    flex: 5;
}


@media only screen and (max-width: 600px) {
    .spacer{
        flex: 0
    }
    
    #output{
        width: 100%;
        word-break: keep-all;
        flex: 10;
    }
    
    html {
        overflow: none;
    }
}