html, body {
    padding: 0;
    margin: 0;
}

body {
    background-color: #222;
    font-family: Rajdhani;
}

.head {
    width: 100vw;
    background-color: #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Położenie poziome, pionowe, rozmycie, kolor */
    height: 37.5px;
    display: flex;
    margin-left: 10px;
    align-items: center;
}

.title {
    font-family: Tilt Prism;
    font-size: 32px;
    color: white;
}

#site {
    margin: 20px;
}

.urlInput {
    display: flex;
    align-items: center;
    justify-content: center;
}

#hookurl {
    background-color: #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: #333;
    width: 80vw;
    height: 35px;
    color: white;
    font-size: large;
}

.submit {
    margin-left: 15px;
    border-radius: 20px;
    width: 15vw;
    height: 35px;
    background-color: #0077ff;
    border: #0077ff;
    font-size: large;
    font-family: Outfit;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: background-color 0.2s, border 0.2s;
}

.submit.clicked {
    transform: scale(0.9);
    transition: transform 0.1s;
}

#content {
    @media (min-aspect-ratio: 1/1) {
        width: 96.5vw;
      }      
    width: 91vw;
    height: 20vh;
    margin-top: 20px;
    background-color: #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: #333;
    color: white;
    font-size: large;
    resize: vertical;
    font-family: Rajdhani;
}

.submit.disable {
    background-color: #333;
    border: #333;
}