/* viide elemendile st muudame kõiki selliseid elemente */
body {
    display: flex;
    padding: 1em;
    flex-direction: column;
    gap: 3em; /* vahe elementide vahel */
    align-items: center;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(126,233,255,1) 0%, rgba(255,128,0,1) 100%);
    color: white;
    font-family: "American Typewriter", fantasy;
    font-feature-settings: revert;
}
/* #-ga viitme elemendile, millel on selline id*/
#photo {
    max-width: 25em;
    max-height: 30em;
}
/* .-ga viitame elemenditele, millel on selline class */
.container {
    display: flex;
    padding: 1em;
    align-items: center;
    gap: 3em;
    justify-content: center;
}

#textBox {
    max-height: 25em;
    overflow-x: hidden;
    overflow-y: auto;
}

.card {
    width: 20em;
    height: 25em;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ece6c8;
    color: black;
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding: 5em 1.5em 1.5em;
    border-radius: 90%;

}
.icon {
    max-width: 10em;
}
iframe {
    width: 50em;
    height: 28em;
}

button {
    width: 20em;
    border: none;
    background-color: #83e5fa;
    padding: 2em;
    border-radius: 10%;
}

button:hover {
    background-color: #C8C6C6;
    cursor: pointer;
}


#title {
    letter-spacing: .20em;
    text-shadow: 1px 1px 2px black;

}