*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
 font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
 color: darkblue;
 padding: 20px;
 background-color: rgb(255, 239, 218);
 min-height: 3vh;
}
body {
    font-family: "Raleway", sans-serif;
    flex-direction: column;
    gap: 24px;
    padding: 14px;
    min-height: 100vh;
    background-color: rgb(255, 246, 234);
}

button {
    background: transparent;
    border-style: solid;
    border-color: rgb(0, 0, 172); 
    outline: none;
    cursor: pointer;
    padding: 15px;
    font-size: larger;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: aliceblue;
    color: darkblue;
    font-family: "Raleway", sans-serif;
    position: relative;
    top: 20px;
}

p {
    gap: 24px;
    padding: 40px;
    max-width: 55%;
}

.survey {
    background: transparent;
    border-color:rgb(0, 0, 172);
    border-radius: 25%;
    outline: none;
    cursor: pointer;
    padding:0 8px;
    position: absolute;
    right: 150px;
    width: 100px;
    height: 155px;
    top: 13%;
    right: 10%;
    font-size: smaller;
    aspect-ratio: 1/1;
    background-color: aliceblue;
    color: darkblue;
    font-family: "Raleway", sans-serif;
}

video {
    float: right;
    height: auto;
    min-height: 180px;
    position: absolute;
    top: 35%;
    right: 3%;
}

input {
    background: transparent;
    border-color: rgb(0, 0, 172);
    outline: none;
    cursor: pointer;
    padding: 0 15px;
    position: absolute;
    bottom: 36%;
    right: 14%;
    background-color: aliceblue;
    border-radius: 25%;
    font-family: "Raleway", sans-serif;
}

.hidden {
    display: none;
}
