/*
desktop.css
Written by M. Zafonte

Intr to Comp Sci

CSS for the challange
*/

body{
    font-family: helvetica;
}

h1 {
    color: red;
}

a {
    text-decoration: none;
    color: blue;

}

a:hover {
    color: red;
}

a:visited, a:link, a:active {
    text-decoration: none;
}

.center {
    text-align: center;
    margin: auto;
}

.box {
    border-radius: 15px;
    color: red;
    background-color: pink;
    width: 500px;
    border: 3px solid blue;
    padding-left: 10px;
}

.round {
    border-radius: 15px;
}
