* {
    position: relative;
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    height: 100vh;
}

h1 {
    text-align: center;
    font-size: 64px;
    padding: 16px;
}

.note-body {
    margin-top: 32px;
    width: 580px;
    top: 0px;
    left: 50%;
    transform: translate(-50%);
    
}

.note-body form {
    width: calc(100% - 88px);
    height: calc(100% - 88px);
    padding: 40px;
    border-radius: 40px;
    border-width: 4px;
    border-style: solid;
    border-color: #000000;
}

.note-field {
    width: 100%;
    height: 160px;
}

.note-field-text {
    background-color: #ffffff;
    transition: 0.2s ease-in-out;
    opacity: 0.5;
    outline: none;
    border-width: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    border-radius: 32px;
    box-shadow: 0px 0px 16px 4px rgba(0, 0, 0, 0);
    border-width: 4px;
    border-color: #000000;
    border-style: double;
}
.note-field-text:hover, .note-field-text:focus, .note-field-text:valid  {
    opacity: 1;
    box-shadow: 0px 0px 16px 4px rgba(0, 0, 0, 0.5);
}

.select-field label{
    display: block;
}
.select-field select {
    display: block;
    width: 100%;
    height: 32px;
}

.note-field, .select-field, .submit-note {
    margin: 10px 0px;
}

.submit-note {
    background-color: #ffffff;
    padding: 20px;
    color: #000000;
    border-radius: 20px;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: letter-spacing 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-shadow: 0px 0px 16px 4px rgba(0, 0, 0, 0);
    border-width: 4px;
    border-style: solid;
}

.submit-note:hover{
    letter-spacing: 8px;
    box-shadow: 0px 0px 16px 4px rgba(0, 0, 0, 0.5);
}

.submit-note:active {
    background-color: #000000;
    color: #ffffff;
}

.link-container {
    margin-top: 20px;
    width: calc(100% - 8px);
    height: 32px;
    border-style: solid;
    border-width: 4px;
    border-color: #000000;
    display: grid;
    grid-template-columns: 1fr 64px;
}

.link-container a {
    margin-left: 8px;
    overflow: hidden;
}

.link-container button {
    height: calc(100% - 3px);
    width: 64px;
    background-color: #ffffff;
    border-style: solid;
    border-width: 0px 0px 0px 4px;
    color: #000000;
    padding: 8px;
    box-shadow: 0px 0px 16px 4px rgba(0, 0, 0, 0);
    transition: letter-spacing 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.link-container button:hover {
    cursor: pointer;
    letter-spacing: 4px;
    box-shadow: 0px 0px 16px 4px rgba(0, 0, 0, 0.5);
}

.link-container button:active {
    background-color: #000000;
    color: #ffffff;
}

.note-container {
    width: 800px;
    height: 400px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-style: double;
    border-width: 4px;
    border-color: #000000;
    border-radius: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.note-container p {
    text-align: center;
    font-size: 32px;
}

@media (max-width: 620px) {
    .note-body {
        width: calc(100% - 40px);
        margin: 0px 20px;
        left: 0px;
        transform: translate(0%);
    }
}

@media (max-width: 380px) {
    .note-body {
        width: 340px;
    }
    h1 {
        width: 348px;
    }
}


@media (max-width: 848px) {
    .note-container {
        width: calc(100% - 40px);
        margin: 0px 20px;
        left: 0px;
        transform: translate(0%, -50%);
    }
}

@media (max-width: 448px) {
    .note-container {
        width: 408px;
    }
}