:root{
    --main: rgb(0, 29, 43);
    --border: rgb(0, 204, 255);

}

body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: rgb(0, 5, 5);
    box-shadow: inset 0 5px 20px var(--border);
}

.container {
    width: 70%;
    height: 70vh;
    background: linear-gradient(to left, rgb(0, 234, 255), rgb(209, 0, 0));
    border-radius: 40px;
    box-shadow: 0 5px 15px rgb(7, 88, 146);
}



.ant {
    width: 5%;
    height: 70vh;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ant i{
    font-size: 30px;
    color: rgb(255, 255, 255);
    transition: all .3s ease;
    cursor: pointer;
}

.ant i:hover{
    transition: all .3s ease;
    font-size: 40px;
    color: var(--main);
}

.prox {
    width: 5%;
    height: 70vh;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    position: relative;
}

.prox i{
    font-size: 30px;
    color: rgb(255, 255, 255);
    transition: all .3s ease;
    cursor: pointer;
}

.prox i:hover{
    transition: all .3s ease;
    font-size: 40px;
    color: var(--main);
}


.content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 63vh;
    background: var(--main);
    flex-direction: column;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: relative;
    top: 7vh;
}

.content:before,
.content:after {
    content: "";
    position: absolute;
    height: 10px;
    width: 20px;
    top: 0;
}

.content:after {
    right: -20px;

    border-radius: 0 0 0 10px;
    -moz-border-radius: 0 0 0 10px;
    -webkit-border-radius: 10px 0 0 0;

    -webkit-box-shadow: -10px 0 0 0 #fff;
    box-shadow: -10px 0 0 0 var(--main);
}

.content:before {
    left: -20px;

    border-radius: 0 0 10px 0;
    -moz-border-radius: 0 0 10px 0;
    -webkit-border-radius: 0 10px 0 0;

    -webkit-box-shadow: 10px 0 0 0 #fff;
    box-shadow: 10px 0 0 0 var(--main);
}



.title-text {
    width: 70%;
    height: 7vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    color: #fff;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    background: #000;

} 



h1 {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;

}

h3 {
    text-align: center;
    font-size: 20px;
    width: 100%;
}

.resposta {
    width: 40%;
    height: 25vh;
    text-align: center;
    border-radius: 20px;
    color: #ccc;
    font-size: 15px;
    margin-bottom: 7%;
    background: var(--main);
    box-shadow: inset 0 -2px 8px var(--border);
    border: 1px solid rgb(0, 255, 170);
}


.exec-text {
    color: #fff;
    margin: auto;
    width: 70%;
}

.button {
    width: 45%;
    height: 15%;
    font-size: 150%;
    cursor: pointer;
    border-radius: 30px;
    background: var(--main);
    color: #fff;
    border: 1px solid var(--border);
    transition: all .5s ease;
    position: relative;
    bottom: 7%;
    border-left: none;
    border-right: none;
}

.button:hover {
    transition: all .5s ease;
    background: rgb(0, 37, 56);
    color: rgb(165, 165, 165);
    box-shadow: inset 0 -2px 8px var(--border);
    border-left: 1px solid #f00;
    border-right: 1px solid #f00;
    border-top: none;
    border-bottom: none;
}


.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgb(0, 0, 0);
    color: #ccc;
    text-align: center;
    box-shadow: 0 -5px 20px var(--border);
}

.footer span {
    color: #fffb00a4;
}