@media screen and (max-width:700px) {
    body {
        font-size: 15px;
    }
    header {
        padding: 5px;
    }
    div.info-wrapper {
        grid-template-columns: 1fr;
    }
    video {
        width: 600px;
    }
    section.video-wrapper {
        text-align: left;
    }
}
  
body {
    font-family: "Source Sans Pro", sans-serif;
    margin: 0;
}

header {
    font-family: "Source Sans Pro", sans-serif;
    background-color: rgba(147, 199, 228, 0.601);
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 10px;
}

.cmdtext {
    color: rgb(11, 11, 11);
}

kbd {
    font-weight: bold;
}
  
.cursor {
    animation: curser-interval 1s step-end infinite;
}

@keyframes curser-interval {
    from, to { 
        opacity: 1; 
    }
    60% { 
        opacity: 0; 
    }
}

main {
    display: grid;
    grid-template-columns: 1fr;
    font-family: "Source Sans Pro", sans-serif;
}

section {
    background-color: #fff;
    padding: 25px;
    background-image: linear-gradient(to right, #fce1ed , #bad1ed)
}


div {

}

.image-wrapper {
    text-align: center;
}

img {
    width: 70%;
    /*width: 1000px;*/
    border-radius: 8px;
    box-shadow: 0 10px 10px rgba(21, 176, 223, 0.826);
}

.image-buttons {
    text-align: center;
    padding: 20px;
}

.info-wrapper {
    padding: 30px;
    display: grid; 
    grid-template-columns: 1fr 3fr;
}

.video-wrapper {
    text-align: center;
}

video {
    /*width: 1200px;*/
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

button {
    font-family: "Source Sans Pro", sans-serif;
    background-color: #61a7d0;
    color: white;
    padding: 20px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #358dc0;
}

footer {
    background-color: #34495e;
    color: white;
    text-align: center;
    padding: 10px;
    bottom: 0;
    font-family: "Source Sans Pro", sans-serif;
}

.PaceLogoImage {
    width: 15%;
}

.image-logo-wrapper {
    text-align: right;
}